2026-01-10 18:35:50 +00:00
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text.RegularExpressions;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using Godot;
|
|
|
|
|
|
2026-05-22 12:25:02 +00:00
|
|
|
using Rokojori.Extensions;
|
2026-01-10 18:35:50 +00:00
|
|
|
namespace Rokojori
|
|
|
|
|
{
|
|
|
|
|
[Tool]
|
|
|
|
|
[GlobalClass]
|
|
|
|
|
public partial class FloatDriverCompositorEffectTarget:FloatDriverTarget
|
|
|
|
|
{
|
|
|
|
|
[Export]
|
|
|
|
|
public CompositorEffectReference compositorEffectReference;
|
|
|
|
|
|
|
|
|
|
[Export]
|
|
|
|
|
public string targetMemberPath;
|
|
|
|
|
|
|
|
|
|
public override GodotObject GetGodotObject( IFloatDriver driver )
|
|
|
|
|
{
|
|
|
|
|
return compositorEffectReference.GetCompositorEffect( driver as Node );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override string GetTargetMemberPath( IFloatDriver driver )
|
|
|
|
|
{
|
|
|
|
|
return targetMemberPath;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|