Last active
August 26, 2019 03:38
-
-
Save rkandas/f5f4c0896f0b745467ba4ca7975a4633 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class AssetSpawner | |
{ | |
public void createAGameObject() | |
{ | |
GameObject cube = GameObject.CreatePrimitive(PrimitiveType.Cube); | |
cube.name = "CubeOne"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment