Feature/Refactor to use ecs architecture (#14)
Reviewed-on: #14 Co-authored-by: Juan Sebastian Montoya <juansmm@outlook.com> Co-committed-by: Juan Sebastian Montoya <juansmm@outlook.com>
This commit is contained in:
parent
e0436e7769
commit
cec1fccc22
23 changed files with 1709 additions and 650 deletions
28
src/systems/RenderSystem.js
Normal file
28
src/systems/RenderSystem.js
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
import { System } from '../ecs/System.js';
|
||||
import { Transform } from '../components/Transform.js';
|
||||
import { MeshComponent } from '../components/MeshComponent.js';
|
||||
|
||||
/**
|
||||
* RenderSystem - syncs Three.js mesh positions with Transform components
|
||||
*/
|
||||
export class RenderSystem extends System {
|
||||
constructor(scene) {
|
||||
super();
|
||||
this.scene = scene;
|
||||
}
|
||||
|
||||
update(_deltaTime) {
|
||||
const entities = this.getEntities(Transform, MeshComponent);
|
||||
|
||||
for (const entityId of entities) {
|
||||
const transform = this.getComponent(entityId, Transform);
|
||||
const meshComp = this.getComponent(entityId, MeshComponent);
|
||||
|
||||
// Sync mesh transform with component
|
||||
meshComp.mesh.position.copy(transform.position);
|
||||
meshComp.mesh.rotation.copy(transform.rotation);
|
||||
meshComp.mesh.scale.copy(transform.scale);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue