您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
60 行
1.7 KiB
60 行
1.7 KiB
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace GameplayIngredients
|
|
{
|
|
public abstract class Callable : MonoBehaviour, ICallable
|
|
{
|
|
public string Name;
|
|
|
|
public void Reset()
|
|
{
|
|
if(Name == string.Empty || Name == null)
|
|
Name = GetDefaultName();
|
|
}
|
|
|
|
public abstract void Execute(GameObject instigator = null);
|
|
public abstract new string ToString();
|
|
|
|
public static void Call(Callable[] calls, GameObject instigator = null)
|
|
{
|
|
if (calls == null)
|
|
{
|
|
Debug.LogError("Cannot execute callable list: Null or Missing");
|
|
return;
|
|
}
|
|
|
|
foreach (var call in calls)
|
|
{
|
|
if (GameplayIngredientsSettings.currentSettings.verboseCalls)
|
|
Debug.Log($"[CALL] : {call.gameObject.scene.name} : {call.gameObject.name} :> {call.GetType().Name} ({call.Name})");
|
|
|
|
if(call != null)
|
|
call.Execute(instigator);
|
|
else
|
|
Debug.LogError($"Cannot execute Call: Null or Missing");
|
|
}
|
|
}
|
|
|
|
public static void Call(Callable call, GameObject instigator = null)
|
|
{
|
|
if (call != null)
|
|
call.Execute(instigator);
|
|
else
|
|
Debug.LogError("Cannot execute call: Null or Missing");
|
|
}
|
|
|
|
[ContextMenu("Reset Callable Name")]
|
|
private void MenuSetDefaultName()
|
|
{
|
|
Name = GetDefaultName();
|
|
}
|
|
|
|
public virtual string GetDefaultName()
|
|
{
|
|
return GetType().Name;
|
|
}
|
|
}
|
|
}
|
|
|