Skip to content

Instantly share code, notes, and snippets.

@ERmilburn02
Created January 10, 2022 16:20
Show Gist options
  • Select an option

  • Save ERmilburn02/829a4caf114ac48c04f898e0a60f615d to your computer and use it in GitHub Desktop.

Select an option

Save ERmilburn02/829a4caf114ac48c04f898e0a60f615d to your computer and use it in GitHub Desktop.
using UnityEngine;
class CreateObjectAtRuntime : MonoBehaviour
{
void Start()
{
var go = new GameObject { name = "CreatedAtRuntime" };
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment