2021-02-19 17:33:02 +01:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
[CreateAssetMenu(menuName = "KernelPanic/Dialogue/Settings")]
|
|
|
|
public class DialogueSettings : ScriptableObject
|
|
|
|
{
|
|
|
|
public float HideAfter => _hideAfter;
|
2021-02-22 16:29:17 +01:00
|
|
|
[SerializeField] private float _hideAfter;
|
|
|
|
|
|
|
|
public string FMODPrefix => _fmodKeyPrefix;
|
|
|
|
[SerializeField] private string _fmodKeyPrefix;
|
|
|
|
}
|