I’m setting up a system where my character has components that handle its stats, inventory, etc. For instance, there’s a component that has variables for stats such as health, hunger, etc.
So, my questions are:
Should I just replicate the whole component?
Should I just replicate the individual variables of the component? Is that even possible?