J's Study log

[Unity] Local Transform 본문

Computer Language/Unity

[Unity] Local Transform

정우섭 2019. 2. 27. 05:36

Local Position - Relative position of a Child Object for it's Parent Object

Local Rotation - Relative rotation of a Child Object for it's Parent Object

Local Scale - The scale of the transform relative to the parent.



 

 Local Position

 Local Rotation

 Local Scale

Command

 transform.localPosition

transform.localRotation

transform.localScale

how to use

Same as transform.position

Same as transform.rotation

 Same as transform.scale




'Computer Language > Unity' 카테고리의 다른 글

[Unity] Tag / Applied Learning(Eating Coins, Game Manager)  (0) 2019.03.04
[Unity] Trigger and Collision  (0) 2019.03.02
[Unity] Parents and Child Object  (0) 2019.02.27
[Unity] Input Mouse Button  (0) 2019.02.27
[Unity] Input keys  (0) 2019.02.25
Comments