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
- FocusNextInDirection not focusing when used on multiline TextFields
- Single click calls UI Element renaming with a delay when clicked on the UI Element name
- Any small change in UI Builder Inspector refreshes Editor Inspector
- Inaccurate Box Collider boundaries on a rotated child Cube when the parent GameObject Scale is non-uniform
- [Android] "SHADOWS_SCREEN" set as shader Keyword when no "_ShadowMapTexture" is bound leads to freeze on a build on some Mali GPU devices
Resolution Note:
We will be adding documentation on this to make this more clear