Skip to content

Commit 2f8f27f

Browse files
authored
Update engine.ts
1 parent c733411 commit 2f8f27f

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

src/engine.ts

+12-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,18 @@ export class AnimationEngine {
1010

1111
addSystem(system: System) {
1212
this.systems.push(system);
13-
}
13+
}
1414

15-
update() {
15+
private prepare() {
16+
// Prepare all systems
17+
this.systems.forEach((system) => {
18+
if(system.prepare) {
19+
system.prepare(this.entities);
20+
}
21+
});
22+
}
23+
24+
private update() {
1625
// let anyActive = false;
1726

1827
// Update all systems, but only for active entities
@@ -61,6 +70,7 @@ export class AnimationEngine {
6170

6271
// Start the loop on initialization
6372
start() {
73+
this.prepare();
6474
this.loop();
6575
}
6676
}

0 commit comments

Comments
 (0)