@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
28 lines • 518 B
TypeScript
export class AttachmentBinding {
attachedEntity: number;
/**
*
* @type {Transform}
*/
attachedTransform: Transform;
parentEntity: number;
/**
*
* @type {Transform}
*/
parentTransform: Transform;
/**
*
* @type {AttachmentSocket}
*/
socket: AttachmentSocket;
/**
*
* @type {Attachment}
*/
attachment: Attachment;
link(): void;
unlink(): void;
update(): void;
}
//# sourceMappingURL=AttachmentBinding.d.ts.map