Does Resource.Load on the same texture n times use n times memory for that texture ?
No, it’s cached and held in memory. You can verify it using the profiler and a loop of a thousand iterations as a test. In fact, all Resource.Load calls are cached and the first lookup is the most expensive with subsequent reads being shortcut through a hashmap of sorts.
1 Like