- Home /
Can we edit code of objects in hierarchy directly?
http://wiki.unity3d.com/index.php/CreatePlane
For example this sheet has the information about vertices, tris etc. But after this code executed and the object is in hierarchy panel, can you edit them internally? Or any other object created such as a cube or camera?
Answer by DaveA · Oct 29, 2013 at 10:48 PM
Yes you can edit meshes with code. That's what this thing does. Can be in Editor or run-time. You can certainly modify cameras and almost everything else with script, that's what scripting is all about.
So we must definitely write a script to change desired object's internals. Thanks, that answers it!
Your answer

Follow this Question
Related Questions
How do I force a GameObject with children to collapse and expand in the hierarchy view? 1 Answer
Game object deleted from scene but not from hierarchy? 1 Answer
Syntax for a game object component variable on a transform in an FBX hierarchy? 1 Answer
how to change gameobject color in hierarchy for highlight purposes. 3 Answers
My Player Gameobject is missing on hierarchy during the play mode 1 Answer