UNPKG

@vladkrutenyuk/three-kvy-core

Version:

Everything you need to create any-complexity 3D apps with Three.js. Empower Three.js with a modular, lifecycle-managed context that seamlessly propagates through objects via reusable features providing structured logic.

12 lines (11 loc) 449 B
import { IFeaturable } from "@vladkrutenyuk/three-kvy-core"; import { Rigidbody } from "./Rigidbody.js"; /** * @see {@link https://github.com/vladkrutenyuk/three-kvy-core/blob/main/src/addons/RigidbodyDynamic.ts | Source} */ export declare class RigidbodyDynamic extends Rigidbody { readonly isRigidbodyDynamic = true; constructor(object: IFeaturable); protected useCtx(ctx: typeof this.ctx): () => void; onBeforeRender(): void; }