注释log
parent
a6cd2af2d0
commit
cceee2b05a
|
|
@ -49,7 +49,7 @@ namespace DofLibrary
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
Send(playerEnter);
|
Send(playerEnter);
|
||||||
Debug.Log("PlayerEnter message sent");
|
//Debug.Log("PlayerEnter message sent");
|
||||||
}
|
}
|
||||||
|
|
||||||
public void LevelPrepared(string levelId)
|
public void LevelPrepared(string levelId)
|
||||||
|
|
@ -63,7 +63,7 @@ namespace DofLibrary
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
Send(message);
|
Send(message);
|
||||||
Debug.Log("LevelPrepared message sent");
|
//Debug.Log("LevelPrepared message sent");
|
||||||
}
|
}
|
||||||
|
|
||||||
public void PointFound(string levelId, int pointId, float combo)
|
public void PointFound(string levelId, int pointId, float combo)
|
||||||
|
|
@ -79,7 +79,7 @@ namespace DofLibrary
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
Send(message);
|
Send(message);
|
||||||
Debug.Log("PointFound message sent");
|
//Debug.Log("PointFound message sent");
|
||||||
}
|
}
|
||||||
|
|
||||||
public void LevelEnd(string levelId)
|
public void LevelEnd(string levelId)
|
||||||
|
|
@ -93,7 +93,7 @@ namespace DofLibrary
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
Send(message);
|
Send(message);
|
||||||
Debug.Log("LevelEnd message sent");
|
//Debug.Log("LevelEnd message sent");
|
||||||
}
|
}
|
||||||
|
|
||||||
public void AllLevelEnd(float timeSpent)
|
public void AllLevelEnd(float timeSpent)
|
||||||
|
|
@ -107,7 +107,7 @@ namespace DofLibrary
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
Send(message);
|
Send(message);
|
||||||
Debug.Log("AllLevelEnd message sent");
|
//Debug.Log("AllLevelEnd message sent");
|
||||||
}
|
}
|
||||||
|
|
||||||
public void PlayerLeave()
|
public void PlayerLeave()
|
||||||
|
|
@ -120,7 +120,7 @@ namespace DofLibrary
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
Send(message);
|
Send(message);
|
||||||
Debug.Log("PlayerLeave message sent");
|
//Debug.Log("PlayerLeave message sent");
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Heartbeat(long timestamp)
|
public void Heartbeat(long timestamp)
|
||||||
|
|
@ -133,7 +133,7 @@ namespace DofLibrary
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
Send(message);
|
Send(message);
|
||||||
Debug.Log("Heartbeat message sent");
|
//Debug.Log("Heartbeat message sent");
|
||||||
}
|
}
|
||||||
|
|
||||||
private void Send(ClientMessage message)
|
private void Send(ClientMessage message)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue