@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
42 lines (30 loc) • 496 B
JavaScript
export class AttachmentBinding {
attachedEntity = -1;
/**
*
* @type {Transform}
*/
attachedTransform = null;
parentEntity = -1;
/**
*
* @type {Transform}
*/
parentTransform = null;
/**
*
* @type {AttachmentSocket}
*/
socket = null;
/**
*
* @type {Attachment}
*/
attachment = null;
link() {
}
unlink() {
}
update() {
}
}