예제 #1
0
    public void Open(ConstellationScriptInfos _path)
    {
        var openedConstellation = ScriptDataService.OpenConstellation(_path);

        if (openedConstellation != null)
        {
            ConstellationScript = openedConstellation;
            SetupNodeWindow();
            Save();
        }
    }
 public void Open(string _path)
 {
     ConstellationScript = ScriptDataService.OpenConstellation(_path);
     SetupNodeWindow();
     Save();
 }
예제 #3
0
 public void Open(string _path = "")
 {
     scriptDataService = new ConstellationEditorDataService();
     scriptDataService.OpenConstellation(_path);
     Setup();
 }