本来一切都没问题的,直到点击按钮销毁一个物体后,就出现以下问题
步骤是这样的,以一个物体A为参照物 克隆出物体B,然后对这个克隆物体B进行操作,最后点击销毁这个克隆物体B,
但是物体A在之后,就出以下错误了
MissingReferenceException: The object of type 'Transform' has been destroyed but you are still trying to access it.
Your script should either check if it is null or you should not destroy the object.
但是我检查了好久的脚本,和物体,都没有Miss Transform,求问,谢谢!
这个意思就是游戏物体被销毁了,但是你还在使用
在这句代码上加上一个判断就行了 if( xxTransform!=null ) dosomething();