I've noticed that when I add a 'remember transform' component to a game object, it also adds a constant id property. However, the gameobject already had a const id component automatically added to it when it was created.
Should I remove the const ID component ? It feels wrong to define the ID twice ...
It looks like you're new here. If you want to get involved, click one of these buttons!
Comments
Remember components derive from Constant ID. You can have them both be present, but only the Remember Transform is necessary.
Thanks !