Horje
gameobject in unity c# Code Example
gameobject in unity c#
//define "myObject"
//(asign in in inspector)
public GameObject myObject;
//runs when you hit the play button
void Start()
{
  //change the name to "myObjectsNewName"
  myObject.name = "myObjectsNewName";
}
//Note for Unity and C#




Csharp

Related
how to redirect to extern page in .net core Code Example how to redirect to extern page in .net core Code Example
content type application/json c# Code Example content type application/json c# Code Example
copy 2d arrays C# Code Example copy 2d arrays C# Code Example
how to store array in c# Code Example how to store array in c# Code Example
c# tostring currency Code Example c# tostring currency Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9