当前位置:   article > 正文

Unity中的Transform_unity transform scale

unity transform scale

1.Transform主要是存储和设置实体对象的位Position(位置), rotation(旋转) and scale (缩放规模)。
我主要用到transform 属性和类型。

public Vector3 localPosition { get; set; }//存储和设置实体相对于父实体的相对位置
public Quaternion rotation { get; set; }//在世界空间中存储变换旋转的四元数,通过rotation可以设置实体的旋转,可以通过用Quaternion.Euler()赋值
 public Transform Find(string n);
public Transform FindChild(string n);
public Transform GetChild(int index);
public int GetChildCount();
public void SetParent(Transform p);//想要把一实例物体通过代码添加到p下,可以通过SetParent
public void SetParent(Transform parent, bool worldPositionStays);//如果为真,则修改父相对位置、比例和旋转,以便对象保持与以前相同的世界空间位置、旋转和缩放。我通常设置为false,不想让uinty改变自己设置好的物体的位置。
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/140660
推荐阅读
相关标签
  

闽ICP备14008679号