コード例 #1
0
        public static GameObject CreateNew(Vector3 position, Quaternion rotation)
        {
            GameObject go        = new GameObject();
            BCylinder  bCylinder = go.AddComponent <BCylinder>();

            CreateNewBase(go, position, rotation);
            bCylinder.BuildMesh();
            go.name = "BCylinder";
            return(go);
        }
コード例 #2
0
 [MenuItem("GameObject/Create Other/BulletForUnity/BCylinder")]  //right click menu
 static void CreateBCylinder()
 {
     Selection.activeObject = BCylinder.CreateNew(GetCameraRaycastPosition(), Quaternion.identity);
     PostCreateObject();
 }