Files
BABA_YAGA/Assets/Scripts/GameSetup/ObjectInteraction.cs
2026-06-08 23:25:33 +07:00

16 lines
445 B
C#

using UnityEngine;
[CreateAssetMenu(fileName = "ObjectInteraction", menuName = "BABA_YAGA/Scriptable Objects/ObjectInteraction")]
public class ObjectInteraction : ScriptableObject
{
[Header("UI Settings")]
public string promptText = "Interact";
[Header("Audio & Visuals")]
public AudioClip interactionSound;
public GameObject interactionVFX;
[Header("Settings")]
public float interactionCooldown = 0.5f;
}