我尝试做足球比赛是为了好玩,但我遇到了问题
void OnTriggerStay(Collider other)
{
if (other.tag == "BallTAG")
RpcAddForceToBall(other.gameObject);
}
[ClientRpc]
public void RpcAddForceToBall(GameObject hit)
{
if (Input.GetButton("Drag"))
{
hit.GetComponent<Rigidbody>().AddForce((movement * 200) * Time.deltaTime);
}
if (Input.GetButtonDown("Shoot"))
hit.GetComponent<Rigidbody>().AddForce((new Vector3(movement.x, 0.60f, movement.z) * 2000 * PlayerCC.velocity.magnitude) * Time.deltaTime);
}
}
主持人可以拖动或射击,但客户端不能对球做任何事情。但如果我喜欢那样
void OnTriggerStay(Collider other)
{
hit.GetComponent<Rigidbody>().AddForce(10,10,10);
if (other.tag == "BallTAG")
RpcAddForceToBall(other.gameObject);
}
客户可以用力击球
我也这样做
void OnTriggerStay(Collider other)
{
Debug.Log("Entered");
if (Input.GetButton("Drag"))
Debug.Log("Dragging");
}
仍然可以打印在客户端上输入但拖动不是主机可以打印它们
我能做些什么来解决这个问题?