File tree 1 file changed +10
-4
lines changed
1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -15,17 +15,23 @@ export class MouseForceSystem extends System {
15
15
this . damping = damping ;
16
16
}
17
17
18
- update ( entities : Entity [ ] ) {
18
+ prepare ( entities : Entity [ ] ) {
19
19
entities . forEach ( ( entity ) => {
20
- const position = entity . getComponent ( PositionComponent ) ;
21
- const velocity = entity . getComponent ( VelocityComponent ) ;
22
- const force = entity . getComponent ( ForceComponent ) ;
23
20
const mouseDrag = entity . getComponent ( MouseDragComponent ) ;
24
21
25
22
// TODO: Move this to init. Make Engine/System call init on all systems
26
23
if ( mouseDrag && ! mouseDrag . dragHandler ) {
27
24
mouseDrag . dragHandler = new DragHandler ( entity ) ;
28
25
}
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 ) ;
29
35
30
36
if (
31
37
position &&
You can’t perform that action at this time.
0 commit comments