为什么不能直接更改transform.position.x的值

 我来答
zxh4567
推荐于2016-07-18 · TA获得超过6.1万个赞
知道大有可为答主
回答量:2.2万
采纳率:83%
帮助的人:1.3亿
展开全部
  这个问题我搞错了,这里修正一下。这是c#中的结构体当作返回值的问题,结构体是值类型,而值传递是复制传递,所以返回的值不是原来的值了,对此返回值的修改是无效的,所以编译器就从源头上禁止了这样的操作。

  unity论坛上有这个问题的讨论
  The reason you can't directly alter the position vector is because it's actually a copy, not the actual position stored on the transform.

  transform.position <--- returns a copy of the position
  transform.position.x <--- the "x" value of the copy
  transform.position.x = 7.0f <--- sets the "x" value on the copy

  C# throws an error because you're setting the "x" value on a copy, which is then destroyed. It's a pointless line that if the compiler didn't pick up on it, could cause a tonne of hair pulling.

  UnityScript gets around this when it compiles by converting your code and firing the C# setter:
  transform.position.x = 7.0f
  when compiled in UnityScript, translates (more or less) to:
  var tempVector : Vector3 = transform.position;
  tempVector.x = 7.0f;
  transform.position = tempVector;

  You can infer that because if you replicate this with a custom C# class, you can track as the getters/setters are invoked.
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式