Skip to content

Commit aa646a2

Browse files
authored
Update dom.ts prepare
1 parent 7df312c commit aa646a2

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

src/dom.ts

+10-4
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,23 @@ export class MouseForceSystem extends System {
1515
this.damping = damping;
1616
}
1717

18-
update(entities: Entity[]) {
18+
prepare(entities: Entity[]) {
1919
entities.forEach((entity) => {
20-
const position = entity.getComponent(PositionComponent);
21-
const velocity = entity.getComponent(VelocityComponent);
22-
const force = entity.getComponent(ForceComponent);
2320
const mouseDrag = entity.getComponent(MouseDragComponent);
2421

2522
// TODO: Move this to init. Make Engine/System call init on all systems
2623
if (mouseDrag && !mouseDrag.dragHandler) {
2724
mouseDrag.dragHandler = new DragHandler(entity);
2825
}
26+
});
27+
}
28+
29+
update(entities: Entity[]) {
30+
entities.forEach((entity) => {
31+
const position = entity.getComponent(PositionComponent);
32+
const velocity = entity.getComponent(VelocityComponent);
33+
const force = entity.getComponent(ForceComponent);
34+
const mouseDrag = entity.getComponent(MouseDragComponent);
2935

3036
if (
3137
position &&

0 commit comments

Comments
 (0)