What does the Local To Scene option on resources do/mean?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By chanon

In the inspector on every resource there is a property

Local To Scene

What does it do?

:bust_in_silhouette: Reply From: kubecz3k

As far as I know it duplicates the resource at loading time of the game. Resources by default are shared between all scene instances. You will often encounter a situation in which you will want to modify resource property in runtime for a single object and you will see that all objects that are using given resource are changed instead (like when you would like to make enemy red at time of damaging him - but all enemies will become red instead).

1 Like