@babylonjs/viewer
Version:
The Babylon Viewer aims to simplify a specific but common Babylon.js use case: loading, viewing, and interacting with a 3D model.
66 lines (62 loc) • 2.4 kB
JavaScript
import { f as RichTypeVector3, R as RichTypeAny } from './declarationMapper-CqO08-WM.esm.js';
import { F as FlowGraphCachedOperationBlock } from './flowGraphCachedOperationBlock-oE7khWes.esm.js';
import { V as Vector3, u as RegisterClass } from './index-MZPybX0H.esm.js';
import './KHR_interactivity-CEwUaqxQ.esm.js';
import './objectModelMapping-De5EKNEZ.esm.js';
import './spotLight.pure-CRdZC6Ci.esm.js';
/** This file must only contain pure code and pure imports */
/**
* @experimental
* A data block that reads the angular velocity of a physics body.
*/
class FlowGraphGetAngularVelocityBlock extends FlowGraphCachedOperationBlock {
/**
* Constructs a new FlowGraphGetAngularVelocityBlock.
* @param config - optional configuration for the block
*/
constructor(config) {
super(RichTypeVector3, config);
this.body = this.registerDataInput("body", RichTypeAny);
}
/**
* @internal
*/
_doOperation(context) {
const physicsBody = this.body.getValue(context);
if (!physicsBody) {
return undefined;
}
let result = context._getExecutionVariable(this, "_cachedVelocity", null);
if (!result) {
result = new Vector3();
context._setExecutionVariable(this, "_cachedVelocity", result);
}
physicsBody.getAngularVelocityToRef(result);
return result;
}
/**
* @returns class name of the block.
*/
getClassName() {
return "FlowGraphGetAngularVelocityBlock" /* FlowGraphBlockNames.PhysicsGetAngularVelocity */;
}
}
let _Registered = false;
/**
* Register side effects for flowGraphGetAngularVelocityBlock.
* Safe to call multiple times; only the first call has an effect.
*/
function RegisterFlowGraphGetAngularVelocityBlock() {
if (_Registered) {
return;
}
_Registered = true;
RegisterClass("FlowGraphGetAngularVelocityBlock" /* FlowGraphBlockNames.PhysicsGetAngularVelocity */, FlowGraphGetAngularVelocityBlock);
}
/**
* Re-exports pure implementation and applies runtime side effects.
* Import flowGraphGetAngularVelocityBlock.pure for tree-shakeable, side-effect-free usage.
*/
RegisterFlowGraphGetAngularVelocityBlock();
export { FlowGraphGetAngularVelocityBlock, RegisterFlowGraphGetAngularVelocityBlock };
//# sourceMappingURL=flowGraphGetAngularVelocityBlock-BnJvfJJa.esm.js.map