Init() 공개 메소드

public Init ( ) : void
리턴 void
예제 #1
0
    public static void EditCollectionAsset(PathAsset pathAsset)
    {
        PathEditor pathEditor;

        if (PathLibrary.Editor.Instance == null)
        {
            pathEditor = new PathEditor();
            PathLibrary.Editor.Init(pathEditor);
            pathEditor.Init();
        }

        PathLibrary.Editor.Instance.Asset = pathAsset;

        ShowBrowser();
    }
예제 #2
0
파일: PathMenu.cs 프로젝트: imclab/Path-GPL
	public static void EditCollectionAsset( PathAsset pathAsset )
	{
		PathEditor pathEditor;
		
		if( PathLibrary.Editor.Instance == null )
		{
			pathEditor = new PathEditor();
			PathLibrary.Editor.Init( pathEditor );
			pathEditor.Init();
		}
		
		PathLibrary.Editor.Instance.Asset = pathAsset;
		
		ShowBrowser();
	}