You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
875 B
42 lines
875 B
using UnityEngine; |
|
using UnityEditor; |
|
using System.IO; |
|
using System.Collections; |
|
|
|
namespace Fungus |
|
{ |
|
|
|
public class FlowchartMenuItems |
|
{ |
|
[MenuItem("Tools/Fungus/Create/Flowchart", false, 0)] |
|
static void CreateFlowchart() |
|
{ |
|
SpawnPrefab("Flowchart"); |
|
} |
|
|
|
public static GameObject SpawnPrefab(string prefabName) |
|
{ |
|
GameObject prefab = Resources.Load<GameObject>(prefabName); |
|
if (prefab == null) |
|
{ |
|
return null; |
|
} |
|
|
|
GameObject go = PrefabUtility.InstantiatePrefab(prefab) as GameObject; |
|
PrefabUtility.DisconnectPrefabInstance(go); |
|
|
|
Camera sceneCam = SceneView.currentDrawingSceneView.camera; |
|
|
|
Vector3 pos = sceneCam.ViewportToWorldPoint(new Vector3(0.5f, 0.5f, 10f)); |
|
pos.z = 0f; |
|
go.transform.position = pos; |
|
|
|
Selection.activeGameObject = go; |
|
|
|
Undo.RegisterCreatedObjectUndo(go, "Create Object"); |
|
|
|
return go; |
|
} |
|
} |
|
|
|
} |