Firstborn/Assets/RPG Creation Kit/Scripts/AI/AI Scripts/AIBase.cs
Schaken-Mods 959e80cf72 assets upload
assets upload description.
2023-03-28 12:16:30 -05:00

27 lines
731 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using RPGCreationKit;
using System;
using System.Linq;
namespace RPGCreationKit.AI
{
/// <summary>
/// Methods with this attrubutes are allowed to be called from a BehaviourTree (AI_Invoke node)
/// </summary>
[AttributeUsage(AttributeTargets.All, Inherited = false)]
public class AIInvokableAttribute : Attribute { }
/// <summary>
/// Base info for an AI Entity in the RPG Creation Kit
/// </summary>
public class AIBase : EntityFactionable
{
public AIGUIDReferences iGUIDReferences;
public AudioSource audioSource;
public AISounds aiSounds;
public Animator m_Anim;
}
}