“Unity добавить компонент” Ответ

Unity добавить компонент

//Use the AddComponent<T>() Method to add a component to your gameobject
GameObject gameObject;

gameObject.AddComponent<BoxCollider>(); //Component has to be an actual Unity component
Miapolis

Как добавить компонен в GameObject Throgh Code Unity

//This uses C# and unity
//to add a ridgidbody
gameobject.addComponet<ridgidbody>();
//to add a meshCollider
gameobject.addComponet<MeshCollider>();
//check out my profile
_creare_

Ответы похожие на “Unity добавить компонент”

Вопросы похожие на “Unity добавить компонент”

Больше похожих ответов на “Unity добавить компонент” по C#

Смотреть популярные ответы по языку

Смотреть другие языки программирования