Refactoring
Last updated
Was this helpful?
Last updated
Was this helpful?
Refactor System is a tool which helps mitigating issues arising from changing the structure of types, either by removing members, or simply by renaming them. Without this system, all related bindings would become corrupted.
To better explain this, let's play with a toy example. Suppose you have the following script:
Now if you notice, there are some issues with this script.
There is a typo for the first member shiledType
, should be shieldType
.
The shield doesn't require a damage
member, but rather a health
one.
The field optionalDamage
may not be needed, and the developer decides to remove it.
Now let's suppose we bind each field and then apply all the changes above. We will end up with the following:
In previous versions, all this process will lead to all bindings becoming corrupted and most probably will spam the console. Here's where Refactor System kicks in to intercept these changes and just before invalidating the bindings, will ask the user how to proceed with each change. Here's the popup window that will be presented to the user:
All three changes will be shown, with the number of affected bindings (only in assets and currently loaded scenes) and options on how to proceed. The options are either to replace the fields with new members, or to remove all affected bindings. Here's the situation after the change:
When clicking on Apply All, the changes will be stored in a special changes history file and each binding affected by these changes, will be updated once it becomes available. This means all bindings in assets and currently loaded scenes will be updated immediately, and all other bindings will be updated automatically when their respective scenes will be loaded.
Here's the final result without doing any manual work: