Skip to content

Instantly share code, notes, and snippets.

View sdelrue's full-sized avatar
💭
coding

Steven Delrue sdelrue

💭
coding
  • Belgium
View GitHub Profile
public class FGlowShader : FShader
{
private float _glowAmount;
private Color _glowColor;
public FGlowShader(float glowAmount,Color glowColor) : base("GlowShader", Shader.Find("Futile/Glow"))
{
_glowAmount = glowAmount;
_glowColor = glowColor;
needsApply = true;