Skip to content

Instantly share code, notes, and snippets.

@tsubaki
Created April 27, 2017 15:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tsubaki/faff746a0cc66f19012ee94eaa03170c to your computer and use it in GitHub Desktop.
Save tsubaki/faff746a0cc66f19012ee94eaa03170c to your computer and use it in GitHub Desktop.
空のGameObjectを生成する
using UnityEngine;
using UnityEditor;
public class CreateEmpty
{
[MenuItem("GameObject/Create EmptyZero %#n", false, -1)]
static void CreateEmptyObject()
{
var obj = new GameObject("GameObject");
obj.transform.localPosition = Vector3.zero;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment