Search Issue Tracker
Fixed in 2019.1.X
Votes
0
Found in
2017.3.0f3
Issue ID
1082814
Regression
No
[Math] Modules/TreeEditor/Includes/Perlin.cs normalize2 and normalize3 uses y twice for normalization
https://github.com/Unity-Technologies/UnityCsReference/blob/73f36bfe71b68d241a6802e0396dc6d6822cb520/Modules/TreeEditor/Includes/Perlin.cs#L180
"normalize2" and "normalize3" uses y value twice for the result
curently reads:
x = y / s;
y = y / s;
should read:
x = x / s;
y = y / s;
If the mentioned functions should follow common math terms, a normalization of n values should not copy a single result into all other results (like it currently does). Since these methods are used to calculate a seed for Perlin noise, the bug has no immediate effects but is probably affecting the noise distribution...
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- “Remove Unused Overrides” available on not loaded Scene and throws “ArgumentException: The scene is not loaded” warning
- Adaptive Probe Volume occlusion edge is calculated incorrectly when viewing probes near geometry edges
- Sampling a texture using an HLSL file throws shader errors and the code does not compile
- "Graphics.CopyTexture called with null source texture" error when Base Camera of an Overlay Camera is removed with DX11 Graphics API and Compatibility Mode enabled
- WebGL sends wrong value with large numbers when SendMessage function is used
Add comment