forked from Shardstone/trail-into-darkness
22 lines
675 B
C#
22 lines
675 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace Jovian.EncounterSystem {
|
|
/// <summary>Looks up <see cref="id"/> in the library passed to <see cref="Resolve"/>; falls back to <see cref="inlineText"/>.</summary>
|
|
[Serializable]
|
|
public struct DialogLineRef {
|
|
public string id;
|
|
[TextArea(2, 6)] public string inlineText;
|
|
|
|
public string Resolve(DialogLineLibrary library) {
|
|
if(library != null && !string.IsNullOrEmpty(id)) {
|
|
var text = library.Resolve(id);
|
|
if(!string.IsNullOrEmpty(text)) {
|
|
return text;
|
|
}
|
|
}
|
|
return inlineText;
|
|
}
|
|
}
|
|
}
|