我正在尝试删除一个实例化的光子网络obejct对象,但是即使我将它设置为对象并且错误返回正确的对象,它也无法删除它由于某种原因我无法弄清楚为什么在这里。这里有错误:
Failed to 'network-remove' GameObject because it is missing a valid
InstantiationId on view: View (0)1 on SUV (scene). Not Destroying GameObject
or PhotonViews! UnityEngine.Debug:LogError(Object)
NetworkingPeer:RemoveInstantiatedGO(GameObject, Boolean) (at Assets/Photon
Unity Networking/Plugins/PhotonNetwork/NetworkingPeer.cs:2499) PhotonNetwork:Destroy(GameObject)
(at Assets/Photon Unity Networking/Plugins/PhotonNetwork/PhotonNetwork.cs:2259)
BulletScript:OnCollisionEnter(Collision) (at Assets/Prefab/Resources/Scripts
/BulletScript.cs:29)
public Transform explosionPrefab;
private Transform explosion;
public GameObject bullet;
void OnCollisionEnter(Collision col) {
if(col.gameObject.name == "Player"){
PhotonNetwork.Destroy (col.gameObject);
Instantiate(explosionPrefab, col.transform.position, col.transform.rotation);
}
if (col.gameObject.name == "SUV") {
PhotonNetwork.Destroy (col.gameObject);
Instantiate(explosionPrefab, col.transform.position, col.transform.rotation);
}
PhotonNetwork.Destroy (bullet);
Instantiate(explosionPrefab, bullet.transform.position, bullet.transform.rotation);
}