You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -508,7 +508,7 @@ export default class SceneObjectSystem extends System {
508
508
|`beforeUpdateAll(time: number)`|| Invoked before updating entities available for this system. It is only invoked when there are entities with the characteristics expected by this system. |
509
509
|`update(time: number, delta: number, entity: Entity)`|| Invoked in updates, limited to the value set in the "frequency" attribute |
510
510
|`afterUpdateAll(time: number, entities: Entity[])`|| Invoked after performing update of entities available for this system. It is only invoked when there are entities with the characteristics expected by this system. |
511
-
|`change(entity: Entity, added: Component<any>[], removed: Component<any>[])`|| Invoked when an expected feature of this system is added or removed from the entity |
511
+
|`change(entity: Entity, added?: Component<any>, removed?: Component<any>)`|| Invoked when an expected feature of this system is added or removed from the entity |
512
512
|`enter(entity: Entity)`|| Invoked when: <br>**A)** An entity with the characteristics (components) expected by this system is added in the world; <br>**B)** This system is added in the world and this world has one or more entities with the characteristics expected by this system; <br>**C)** An existing entity in the same world receives a new component at runtime and all of its new components match the standard expected by this system. |
513
513
|`exit(entity: Entity)`|| Invoked when: <br>**A)** An entity with the characteristics (components) expected by this system is removed from the world; <br>**B)** This system is removed from the world and this world has one or more entities with the characteristics expected by this system; <br>**C)** An existing entity in the same world loses a component at runtime and its new component set no longer matches the standard expected by this system |
0 commit comments