This commit is contained in:
Irene-Maxine
2025-06-05 21:34:15 +08:00
parent 0f2b243b20
commit c39998508a
7 changed files with 71 additions and 2 deletions

View File

@@ -543,4 +543,18 @@ export const DELETE_PEOPLE_FACE_ID= {
this.setNextStatement(true);
this.setInputsInline(true);
}
};
export const AI_STOP_ACQUISITION = {
init: function () {
this.setColour(AI_LOCAL_GRAPH_HUE);
this.appendValueInput('SUB')
.appendField(Blockly.Msg.MIXLY_STOP)
.setCheck("var");
this.appendDummyInput()
.appendField(Blockly.Msg.MIXLY_IMAGE_ACQUISITION);
this.setOutput(true);
this.setInputsInline(true);
}
};