Skip to content

Commit

Permalink
fix(docs): "Optimization" phase to "Optimizing" phase (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sayamame-beans authored Jan 14, 2024
1 parent 82014e6 commit 5a2c624
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Passes are grouped into execution phases, which execute in the following order:
* Resolving - This is intended to run before any editor extensions modify the avatar, and is useful for rehydrating components with serialized state that need to refer to the pre-transformation avatar (e.g. if you have a path serialized to a string which you need to resolve to an object before objects start moving around)
* Generating - This is intended to run before editor extensions which primarily generate new objects and components for use by other systems.
* Transforming - This is intended as the "general-purpose" execution phase, where most extensions which transform avatars run.
* Optimization - This is intended as an execution phase for optimization plugins which aren't intended to modify the avatar in a semantically-meaningful way.
* Optimizing - This is intended as an execution phase for optimization plugins which aren't intended to modify the avatar in a semantically-meaningful way.

Within each phase, passes are always executed in the order in which they are declared in the plugin definition. However, depending on dependency declarations, passes from other plugins can be injected between your passes.

Expand Down

0 comments on commit 5a2c624

Please sign in to comment.