问题
当尝试进入播放模式时,接收到了以下错误信息:
error CS0200: Property or indexer `__' cannot be assigned to (it is read only)
原因
CS0200错误的产生是因为您尝试给一个只读属性的变量进行赋值时而产生的。
在这个示例中所显示的错误:
error CS0200: Property or indexer `UnityEngine.GameObject.activeSelf' cannot be assigned to (it is read only)
解决方案
解决CS0200错误,需要一个变通的方法来得到所需的结果。在这个例子中,有一个方法来激活我们的游戏对象。
更多信息
https://msdn.microsoft.com/en-us/library/fd8axwct(v=vs.90).aspx
评论
0 条评论
文章评论已关闭。