examples: Fix typo "_Random" -> "Random"

Fixes: #356
This commit is contained in:
Michael Fabian 'Xaymar' Dirks 2020-11-02 01:04:37 +01:00
parent cd76bb638d
commit 641c4110ae
1 changed files with 2 additions and 2 deletions

View File

@ -161,10 +161,10 @@ float4 PSDefault(VertData vtx) : TARGET {
float bar_direction = 0.;
if (TransitionTime < .5 || !_49_FadeToColor) {
bar_offset = -abs(noised(float2(bar_id, 0.)).x * bar_offset_max);
bar_direction = step(noised(float2(bar_id, 1.)).x, _Random[3][1]);
bar_direction = step(noised(float2(bar_id, 1.)).x, Random[3][1]);
} else {
bar_offset = -abs(noised(float2(bar_id, 1.)).x * bar_offset_max);
bar_direction = step(noised(float2(bar_id, 0.)).x, _Random[3][1]);
bar_direction = step(noised(float2(bar_id, 0.)).x, Random[3][1]);
}
if (_49_FadeToColor) {