UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

29 lines 670 B
/** * @extends {AttachmentSocket} */ export class BoneAttachmentSocket extends AttachmentSocket { /** * * @param j * @returns {BoneAttachmentSocket} */ static fromJSON(j: any): BoneAttachmentSocket; boneName: string; /** * * @param {BoneAttachmentSocket} other */ copy(other: BoneAttachmentSocket): void; /** * * @return {BoneAttachmentSocket} */ clone(): BoneAttachmentSocket; /** * @readonly * @type {boolean} */ readonly isBoneAttachmentSocket: boolean; } import { AttachmentSocket } from "./AttachmentSocket.js"; //# sourceMappingURL=BoneAttachmentSocket.d.ts.map