b9d2fe60fd
Extracts Player (extends Entity), TestPlane, and PlayerCamera into their own files; the camera now tracks the player's live position at a fixed offset instead of orbiting the world origin over time. Updates test_overworldscene.c to match the new entity order and to build an in-memory zip fixture, since overworldscene.js now require()s these sibling files and require() always resolves through ASSET.zip.
25 lines
577 B
JavaScript
25 lines
577 B
JavaScript
// Copyright (c) 2026 Dominic Masters
|
|
//
|
|
// This software is released under the MIT License.
|
|
// https://opensource.org/licenses/MIT
|
|
|
|
class Player extends Entity {
|
|
constructor() {
|
|
super();
|
|
|
|
this.position = this.add(POSITION);
|
|
this.position.setLocalPosition(0.0, 2.0, 0.0);
|
|
|
|
this.physics = this.add(PHYSICS);
|
|
this.physics.setShape(PHYSICS_SHAPE_CAPSULE, 0.5, 0.5);
|
|
|
|
this.renderable = this.add(RENDERABLE);
|
|
this.renderable.setMesh(0, MESH_CAPSULE);
|
|
this.renderable.setColor(0, 0, 255, 255);
|
|
|
|
this.add(PLAYER);
|
|
}
|
|
}
|
|
|
|
module.exports = Player;
|