rj-action-library/Runtime/Animation/Highlight/SetPointableHighlightEffect.cs

36 lines
769 B
C#
Raw Normal View History

2025-06-11 04:33:37 +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 SetPointableHighlightEffect:Action
{
[Export]
public Pointable pointable;
[Export]
public HighlightEffect effect;
2025-06-12 09:03:02 +00:00
[Export]
public bool startHighlight = false;
2025-06-11 04:33:37 +00:00
protected override void _OnTrigger()
{
2025-06-12 09:03:02 +00:00
this.LogInfo( "Change Hightlight", HierarchyName.Of( effect ) );
2025-06-11 04:33:37 +00:00
pointable.highlightEffect = effect;
2025-06-12 09:03:02 +00:00
if ( effect != null && startHighlight )
{
HighlightEffect.CancelHighlight( pointable.highlightTargets );
effect.Highlight( HighlightActionType.Start, [ pointable ] );
}
2025-06-11 04:33:37 +00:00
}
}
}