- Home /
Duplicate Question
How can I resize a plane?
pls indicate the specific instructions. im a beginner in unity. thanks
Unity is popular enough that you can use queries like "Unity resize" and get helpful results near the top.
Answer by GeorgeRigato · Nov 25, 2012 at 06:26 PM
If you're adding a script to the plane itself:
(C#)
transform.localScale = new Vector3 (10, 1, 10); //this multiplies the original size by 10.
Also, you could resize it by a percentage of its current size:
transform.localScale *= 1.1f; //It intreases the current size by 10%.
But I agree that you could have made a quick research to learn the basics of this and then come with a more developed question on how to do this in a certain way you want, because one line questions really don't tell what you have done and, more important, HOW you want to do things.
Follow this Question
Related Questions
Windowed game to fullscreen 2 Answers
Unity crashes when trying to resize a plane 0 Answers
how to resize plane using touch in gameview 0 Answers
Changing the '2D Axis' 1 Answer