check point
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using Hawkeye.VisionBuilder.Workflow.Datatypes;
|
||||
|
||||
namespace Hawkeye.VisionBuilder.Workflow.Operations;
|
||||
|
||||
public class ActivateImageOperation:BaseOperation
|
||||
{
|
||||
public ScriptValue ImageSource { get; set; } = new ScriptValue();
|
||||
|
||||
protected override void InterpretInternal(Context context)
|
||||
{
|
||||
context.ActiveImage = GetScriptValue<HawkeyeImage>(ImageSource);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user