Update App.tsx to remove dialogue selection and add material summary for NPC Talk effect

This commit is contained in:
2026-04-15 09:17:01 +02:00
parent 2f2f610c9f
commit 3db877c86e

View File

@@ -9191,25 +9191,11 @@ export function App({ store, initialStatusMessage }: AppProps) {
</div>
) : link.action.type === "startDialogue" ? (
<div className="form-section">
<label className="form-field">
<span className="label">Dialogue</span>
<select
className="text-input"
value={link.action.dialogueId}
onChange={(event) =>
updateDialogueInteractionLinkTarget(
link,
event.currentTarget.value
)
}
>
{projectDialogueList.map((dialogue) => (
<option key={dialogue.id} value={dialogue.id}>
{dialogue.title}
</option>
))}
</select>
</label>
<div className="material-summary">
Legacy direct dialogue links are no longer authored here.
Move this behavior into a sequence and use a Make NPC Talk
effect instead.
</div>
</div>
) : link.action.type === "runSequence" ? (
(() => {