Files
WhaleAdventure_VR/Assets/Samples/Graph Toolkit/0.4.0-exp.2/VisualNovelDirector Sample/Runtime/VisualNovelRuntimeGraph.cs
2026-06-09 15:51:29 +09:00

19 lines
546 B
C#

using System.Collections.Generic;
using UnityEngine;
namespace Unity.GraphToolkit.Samples.VisualNovelDirector
{
/// <summary>
/// The runtime representation of a visual novel graph.
/// </summary>
/// <remarks>
/// For the sake of this sample, the visual novel graph is represented as a linear list of nodes with no branching
/// or loops.
/// </remarks>
public class VisualNovelRuntimeGraph : ScriptableObject
{
[SerializeReference]
public List<VisualNovelRuntimeNode> Nodes = new();
}
}