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

28 lines
707 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using RPGCreationKit;
namespace RPGCreationKit
{
/// <summary>
/// The InteractiveObject in the scene
/// </summary>
public class InteractiveObject_Behaviour : MonoBehaviour
{
// Reference to InteractiveObject base data
public InteractiveObject interactiveObj;
// Array of events, used with the InteractiveOptions to have Events to every options
public Events[] events = new Events[0];
// Array of result scripts
public string[] resultScripts = new string[0];
// Can we interact with the object
public bool canInteract = true;
}
}