mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-12 16:58:29 +00:00
15 lines
330 B
C#
15 lines
330 B
C#
using CUE.NET.Devices.Generic;
|
|
using CUE.NET.Effects;
|
|
|
|
namespace SimpleDevTest
|
|
{
|
|
public class RemoveRedEffect : AbstractBrushEffect
|
|
{
|
|
public override void Update(float deltaTime)
|
|
{
|
|
foreach (CorsairColor colors in Brush.RenderedTargets.Values)
|
|
colors.R = 0;
|
|
}
|
|
}
|
|
}
|