- Home /
Difference between scale and height in a gameobject with charactercontroller
What is the difference between scale.y of a gameobject and its height in charactercontroller? They both seem to represent the same value
Answer by Berenger · Dec 22, 2010 at 10:45 AM
The gameObject scale will affect all it's components, such as the renderer (the character will appear bigger) or the capsule collider, and even it's children components.
In the other hand, the character controller height will just affect the way this component behave, meaning if your character controller height is higher than your gameObject, it won't touch the ground ! It has nothing to do with other components or children.
Your answer
Follow this Question
Related Questions
CharacterController.Move Not Corresponding to gameobject.transform.rotation 1 Answer
Access Transform of an Array of GameObjects 1 Answer
GameObject not working with variable in C# script 3 Answers
Reverse Look up ( have transform want the gameObject of that transform) 2 Answers
How to get info of object within certain range?(Javascript) 1 Answer