16 行
354 B
16 行
354 B
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
namespace GameplayIngredients.Actions
|
|
{
|
|
public class FocusUIAction : ActionBase
|
|
{
|
|
public Selectable UIObjectToFocus;
|
|
|
|
public override void Execute(GameObject instigator = null)
|
|
{
|
|
if (UIObjectToFocus != null)
|
|
UIObjectToFocus.Select();
|
|
}
|
|
}
|
|
}
|