您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
24 行
666 B
24 行
666 B
using UnityEngine;
|
|
using UnityEngine.Localization;
|
|
|
|
[CreateAssetMenu(fileName = "Interaction", menuName = "UI/Interaction")]
|
|
public class InteractionSO : ScriptableObject
|
|
{
|
|
[Tooltip("The interaction name")]
|
|
[SerializeField]
|
|
private LocalizedString _interactionName = default;
|
|
|
|
[Tooltip("The interaction icon")]
|
|
[SerializeField]
|
|
private Sprite _interactionIcon = default;
|
|
|
|
[Tooltip("The Interaction Type")]
|
|
[SerializeField]
|
|
private InteractionType _interactionType = default;
|
|
|
|
|
|
public Sprite InteractionIcon => _interactionIcon;
|
|
public LocalizedString InteractionName => _interactionName;
|
|
public InteractionType InteractionType => _interactionType;
|
|
|
|
}
|