UNPKG

react-native-filament

Version:

A real-time physically based 3D rendering engine for React Native

13 lines 499 B
import { RigidBody } from './RigidBody'; export interface DiscreteDynamicWorld { addRigidBody(rigidBody: RigidBody): void; removeRigidBody(rigidBody: RigidBody): void; /** * Update the simulation each frame. * @param timeStep The time passed * @param maxSubSteps @default 1 * @param fixedTimeStep @default 1/60 (60 Hz) */ stepSimulation(timeStep: number, maxSubSteps: number, fixedTimeStep: number): void; } //# sourceMappingURL=DiscreteDynamicWorld.d.ts.map