()
| 1200 | } |
| 1201 | |
| 1202 | addOnTriggerInput(): number { |
| 1203 | const trigS = this.findInputSlot("onTrigger") |
| 1204 | if (trigS == -1) { |
| 1205 | this.addInput("onTrigger", LiteGraph.EVENT, { |
| 1206 | nameLocked: true, |
| 1207 | }) |
| 1208 | return this.findInputSlot("onTrigger") |
| 1209 | } |
| 1210 | return trigS |
| 1211 | } |
| 1212 | |
| 1213 | addOnExecutedOutput(): number { |
| 1214 | const trigS = this.findOutputSlot("onExecuted") |
no test coverage detected