Closes #6327
This commit is contained in:
@@ -121,7 +121,7 @@ public class MendProjector extends Block{
|
||||
float f = 1f - (Time.time / 100f) % 1f;
|
||||
|
||||
Draw.color(baseColor, phaseColor, phaseHeat);
|
||||
Draw.alpha(heat * Mathf.absin(Time.time, 10f, 1f) * 0.5f);
|
||||
Draw.alpha(heat * Mathf.absin(Time.time, 50f / Mathf.PI2, 1f) * 0.5f);
|
||||
Draw.rect(topRegion, x, y);
|
||||
Draw.alpha(1f);
|
||||
Lines.stroke((2f * f + 0.2f) * heat);
|
||||
|
||||
@@ -137,7 +137,7 @@ public class OverdriveProjector extends Block{
|
||||
float f = 1f - (Time.time / 100f) % 1f;
|
||||
|
||||
Draw.color(baseColor, phaseColor, phaseHeat);
|
||||
Draw.alpha(heat * Mathf.absin(Time.time, 10f, 1f) * 0.5f);
|
||||
Draw.alpha(heat * Mathf.absin(Time.time, 50f / Mathf.PI2, 1f) * 0.5f);
|
||||
Draw.rect(topRegion, x, y);
|
||||
Draw.alpha(1f);
|
||||
Lines.stroke((2f * f + 0.1f) * heat);
|
||||
|
||||
Reference in New Issue
Block a user