This commit is contained in:
SoulliesOfficial
2026-03-21 12:12:12 -04:00
parent a1b831ecbf
commit 7d3e8c2d5b
159 changed files with 4096 additions and 14430 deletions

View File

@@ -1,4 +1,4 @@
using UnityEngine;
using UnityEngine;
using UnityEngine.Rendering;
namespace Echovoid.Runtime.Behavior.Rendering
@@ -71,6 +71,16 @@ namespace Echovoid.Runtime.Behavior.Rendering
// --- Pixelate ---
public static readonly int _PixelateStrengthX = Shader.PropertyToID("_PixelateStrengthX");
public static readonly int _PixelateStrengthY = Shader.PropertyToID("_PixelateStrengthY");
// --- Hyper Tunnel ---
public static readonly int _HyperTunnelColor = Shader.PropertyToID("_HyperTunnelColor");
public static readonly int _HyperTunnelParams = Shader.PropertyToID("_HyperTunnelParams");
public static readonly int _HyperTunnelCenter = Shader.PropertyToID("_HyperTunnelCenter");
// --- Space Pulse ---
public static readonly int _SpacePulseColor = Shader.PropertyToID("_SpacePulseColor");
public static readonly int _SpacePulseParams = Shader.PropertyToID("_SpacePulseParams");
public static readonly int _SpacePulseCenter = Shader.PropertyToID("_SpacePulseCenter");
}
}
}