1

我将 PUN 1.22 集成到我的 Unity3d wp8 项目中。它构建正确,但 PhotonView.Get(this) 返回 null。会是什么?

public static PhotonView Get(Component component)
{
    return component.GetComponent<PhotonView>() as PhotonView;
}

public static PhotonView Get(GameObject gameObj)
{
    return gameObj.GetComponent<PhotonView>() as PhotonView;
}
4

1 回答 1

1

只是忘记将 PhotonView 附加到我的游戏对象

解决方案:

this.gameObject.AddComponent<PhotonView>();
photonView = PhotonView.Get(this);
于 2013-10-14T12:57:04.537 回答