docs: document story engine and PR2 playable loop
This commit is contained in:
@@ -24,8 +24,8 @@ export function StoryPanel() {
|
||||
Story log
|
||||
</h3>
|
||||
<ul className="flex flex-col gap-2 text-slate-300 text-sm">
|
||||
{storyLog.map((entry, i) => (
|
||||
<li key={`${entry.nodeId}-${i}`}>
|
||||
{storyLog.map((entry) => (
|
||||
<li key={`${entry.nodeId}:${entry.choiceLabel ?? ''}:${entry.prose}`}>
|
||||
{entry.choiceLabel ? (
|
||||
<span className="text-amber-400/80">[{entry.choiceLabel}] </span>
|
||||
) : null}
|
||||
|
||||
Reference in New Issue
Block a user