@babylonjs/core
Version:
Getting started? Play directly with the Babylon.js API using our [playground](https://playground.babylonjs.com/). It also contains a lot of samples to learn how to use it.
39 lines • 1.78 kB
JavaScript
import { FlowGraphEventBlock } from "../../flowGraphEventBlock.js";
import { RichTypeAny, RichTypeNumber } from "../../flowGraphRichTypes.js";
import { RegisterClass } from "../../../Misc/typeStore.js";
import { _isADescendantOf } from "../../utils.js";
/**
* A pointe out event block.
* This block can be used as an entry pointer to when a pointer is out of a specific target mesh.
*/
export class FlowGraphPointerOutEventBlock extends FlowGraphEventBlock {
constructor(config) {
super(config);
this.type = "PointerOut" /* FlowGraphEventType.PointerOut */;
this.pointerId = this.registerDataOutput("pointerId", RichTypeNumber);
this.targetMesh = this.registerDataInput("targetMesh", RichTypeAny, config?.targetMesh);
this.meshOutOfPointer = this.registerDataOutput("meshOutOfPointer", RichTypeAny);
}
_executeEvent(context, payload) {
const mesh = this.targetMesh.getValue(context);
this.meshOutOfPointer.setValue(payload.mesh, context);
this.pointerId.setValue(payload.pointerId, context);
const skipEvent = payload.over && _isADescendantOf(payload.mesh, mesh);
if (!skipEvent && (payload.mesh === mesh || _isADescendantOf(payload.mesh, mesh))) {
this._execute(context);
return !this.config?.stopPropagation;
}
return true;
}
_preparePendingTasks(_context) {
// no-op
}
_cancelPendingTasks(_context) {
// no-op
}
getClassName() {
return "FlowGraphPointerOutEventBlock" /* FlowGraphBlockNames.PointerOutEvent */;
}
}
RegisterClass("FlowGraphPointerOutEventBlock" /* FlowGraphBlockNames.PointerOutEvent */, FlowGraphPointerOutEventBlock);
//# sourceMappingURL=flowGraphPointerOutEventBlock.js.map