Fixed ccusom model loading form the fix path to the current project directory
This commit is contained in:
@@ -427,7 +427,7 @@ namespace Nodify.Calculator
|
||||
else if (info.Title == "SET")
|
||||
{
|
||||
info.Input.Add("");
|
||||
var customModelDir = "CustomModels";
|
||||
var customModelDir = System.IO.Path.Combine(ProjectManager.ProjectDirectory, "CustomModels");
|
||||
Directory.CreateDirectory(customModelDir);
|
||||
var flpath = System.IO.Path.Combine(customModelDir, info.ClassName + ".cs");
|
||||
if (File.Exists(flpath))
|
||||
|
||||
Reference in New Issue
Block a user