rj-action-library/Runtime/Animation/Wipe/FadeWipeEffect.cs

22 lines
436 B
C#
Raw Normal View History

2025-01-08 18:46:17 +00:00
using System.Collections;
using System.Collections.Generic;
using System.Text.RegularExpressions;
using System.Text;
using Godot;
namespace Rokojori
{
[Tool]
[GlobalClass]
public partial class FadeWipeEffect:TextureWipeEffect
{
public override void Assign( ColorRect colorRect )
{
var material = new FadeWipeMaterial();
colorRect.Material = material;
base.Assign( colorRect );
}
}
}