UNPKG

babylon-mmd

Version:
10 lines (9 loc) 192 B
/** * Interface for a wasm integrated physics delta time clock */ export interface IPhysicsClock { /** * Get delta time in seconds */ getDeltaTime(): number | undefined; }