UNPKG

mylingo3d

Version:

Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor

24 lines 465 B
export default class PhysicsUpdate { x = false; y = false; z = false; updateX() { this.x = true; } updateY() { this.x = true; } updateZ() { this.x = true; } updateXYZ() { this.x = this.y = this.z = true; } updateXZ() { this.x = this.z = true; } reset() { this.x = this.y = this.z = false; } } //# sourceMappingURL=PhysicsUpdate.js.map