2025-07-08 10:46:31 +00:00
|
|
|
|
// Copyright (c) Pixel Crushers. All rights reserved.
|
|
|
|
|
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
namespace PixelCrushers.DialogueSystem
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Add [DialogueEntryPopup] to an int show a popup of dialogue entries in the most recent conversation selection shown in the inspector.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class DialogueEntryPopupAttribute : PropertyAttribute
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
public DialogueEntryPopupAttribute()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|