plugin system docs

custom buttons for plugins
calibration functions for Leeform
This commit is contained in:
EugeneTes
2026-03-30 16:15:47 +02:00
parent a1838cafeb
commit 4bd117af47
76 changed files with 4521 additions and 59 deletions

View File

@@ -67,8 +67,8 @@ namespace VisionBuilder.UI.Recipes.HawkeyeRecipe
protected override void Initialize(RecipeData currentRecipe)
{
var path = "..\\Data\\Recipes\\" + currentRecipe.RecipeName + ".jhrcp";
_currentRecipeFilePath = Path.GetFullPath(path);
var path = Path.GetFullPath(Path.Combine("..", "Data", "Recipes", currentRecipe.RecipeName + ".jhrcp"));
_currentRecipeFilePath = path;
_workflow = WorkflowList.LoadJSONFromFile(path);
StartFileWatcher(_currentRecipeFilePath);
}