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;
}