Do multiple Nodes preloading the same resource make multiple copies of it?

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

In my game, the bullet Node contains all the information regarding how fast it is, how innacurate the bullet is and what sound is played. This is because in my game, the type of bullet changes, not the gun. I was just wondering if it is very inefficient for every bullet node to be preloading their gunshot sound

:bust_in_silhouette: Reply From: kidscancode

Resources are shared. Once a resource has been loaded, additional instances will use the same resource.

thank you this is exactly what i was hoping for

manglemix | 2020-03-25 03:27