我遇到的问题是,当我将玩家 2 的骰子 SetActive 设置为 False 时,玩家 1 的骰子也会消失,因为 PhotonTargets 设置为 All 以使玩家令牌一起移动。下面是我尝试它的代码。我什至需要在这里编码这个逻辑还是应该在其他地方?提前致谢
public static void MoveSteps(string playerName, int numberOfSteps)
{
ScriptsPhotonView.RPC("MoveStepsRPC", PhotonTargets.All, playerName, numberOfSteps);
}
[PunRPC]
void MoveStepsRPC(string playerName, int numberOfSteps)
{
print("playerName:" + playerName);
print("numberOfSteps:" + numberOfSteps);
if (playerName == "Player1")
{
GameObject.Find(playerName).GetComponent<PlayerController>().Move(numberOfSteps);
dice.SetActive(true);
}
else if (playerName == "Player2")
{
dice.SetActive(false);
}
}