959e80cf72
assets upload description.
16 lines
362 B
C#
16 lines
362 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using XNode;
|
|
using RPGCreationKit.DialogueSystem;
|
|
|
|
|
|
namespace RPGCreationKit.DialogueSystem
|
|
{
|
|
[CreateNodeMenu("Dialogue System/Comment", order = 3)]
|
|
[NodeTint("#044d01")]
|
|
public class CommentNode : Node
|
|
{
|
|
[TextArea] [SerializeField] string content;
|
|
}
|
|
} |