Search Issue Tracker
By Design
Votes
0
Found in
Issue ID
1269760
Regression
No
[Textures] CubemapArray API forces duplicate code because you cannot access individual cubemaps directly
Steps to repro:
1. create a new project
2. create a new script
3. in the script, create 1x Cubemap and 1x CubemapArray objects
4. make a function which does something with a Cubemap argument (for example, call GetPixels on the given Cubemap)
5. make a loop from 0 to cubemaparray.count
6. inside the loop, attempt to call the function which operates on a single Cubemap, on a Cubemap from the CubemapArray
Expected: you can use the same logic on a CubemapArray element, or an individual Cubemap
Actual: you must duplicate the code with slight changes, depending if you are passing a CubemapArray or Cubemap
Repro: 2020.2.0a20
Notes:
- this is not a true bug, but a UX issue and likely needs a new feature to solve
- Proposed solution is something like a .GetCubemapAtIndex API or [ ] operator or implement IEnumerable on the CubemapArray to give access to each Cubemap individually
- See https://docs.unity3d.com/2020.2/Documentation/ScriptReference/CubemapArray.html
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Memory leak when a lot of UI elements are spawned and despawned
- Warnings are not logged in the Console window when using external code analyzers
- Errors “TLS Allocator ALLOC_TEMP_TLS, underlying allocator ALLOC_TEMP_MAIN has unfreed allocations, size 288“ appear constantly when Prefab is open
- Crash on PPtr<Shader>::operator or NullException errors spammed in console when calling Dispose() on null GraphicsBuffer with baked Reflection Probes
- “EndRenderPass: Not inside a Renderpass” and other Render Graph errors in the Player when Render Graph is enabled and Overlay UI is used
Resolution Note:
We will be adding documentation on this to make this more clear