-
Notifications
You must be signed in to change notification settings - Fork 1
Nodes
mifth edited this page Jan 25, 2024
·
18 revisions
Start Node is the first node from what any dialogue starts.
JSON:
{
"Inputs": [],
"Name": "StartNode",
"Outputs": [
{
"Type": 0
}
],
"Position": [
768,
420.399993896484
],
"Size": [
280.000213623047,
121.00048828125
],
"StartID": 0,
"StartName": "First Quest"
}
This is the main node which represents dialogue data. It contains a main text(MainText) and answers(TextSlots).
JSON:
{
"Inputs": [
{
"Type": 0
},
{
"Type": 1
},
{
"Type": 1
},
{
"Type": 1
},
{
"Type": 1
}
],
"MainText": {
"Text": "{\"Eng\": \"Hodor\",}"
},
"Name": "DialogueNode",
"Outputs": [
{
"Type": 0
},
{
"Type": 0
},
{
"Type": 0
},
{
"Type": 0
}
],
"Position": [
415.092468261719,
128.960174560547
],
"Size": [
549.834716796875,
369.231323242188
],
"TextSlots": [
{
"Text": "{\"Eng\": \"Winter is coming\",}"
},
{
"Text": "{\"Eng\": \"Winter is coming\",}"
},
{
"Text": "{\"Eng\": \"Winter is coming\",}"
}
]
}