Search Issue Tracker
Won't Fix
Votes
0
Found in
5.3.4p5
Issue ID
803610
Regression
No
[Shaders] SetFloat can not be set for arrays in shaders
Steps to reproduce:
1. open users attached project
2. play scene
Expected: sphere blue
Actual: sphere black
Reproduced: 5.4.0b21
Not reproducible: 5.3.5p1
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
- Articulation Body with 'Revolute' Joint Type has erratic behavior when Upper Limit is set to above 360
- WebGL Player fails to render Scene when Terrain with Detail Mesh is added and WebGPU Graphics API is used
- Inconsistent errors are logged when different types are passed into the Query "Q<>" method in UIToolkit and the ancestor VisualElement is null
- Crash on GetMaterialPropertyByIndex when opening a specific Scene
- Discrepancies in the styling are present when using a TSS file instead of a USS file in custom EditorWindow
Duno
Aug 24, 2017 15:10
Can we have SetFloatArray in the future for compute shaders also ?
Aras
Sep 29, 2016 10:01
The workaround in Unity 5.3 and earlier is to use float4 arrays. The HLSL shader compiler internally turns arrays of floats into arrays of float4's anyway.
Since Unity 5.4, arrays in shaders are accessed differently - there are actual material.SetFloatArray etc. functions. This works as expected:
material.SetFloatArray("_myarray", new float[]{0.8f,0.5f,0.3f});