예제 #1
0
파일: Editing.cs 프로젝트: pipe01/WireEdit
 public static void BeginEdit(Transform[][] references)
 {
     Instance = new Editing(references);
 }
예제 #2
0
파일: Main.cs 프로젝트: pipe01/WireEdit
 private void EnterEditing()
 {
     Editing.BeginEdit(Selection.Instance.GetWireReferences());
     GameObject.Destroy(Selection.Instance);
 }
예제 #3
0
파일: Editing.cs 프로젝트: pipe01/WireEdit
        public void Cancel()
        {
            SelectedEditor.DeletePreview();

            Instance = null;
        }