outfly/assets/scenes/conversations.scn.ron

45 lines
1.3 KiB
Plaintext
Raw Normal View History

2024-03-19 04:38:11 +00:00
(
resources: {},
entities: {
4294967296: (
components: {
"outfly::actor::ChatBranch": (
id: "hialien",
name: "Icarus",
label: "INIT",
delay: 0.0,
sound: "ping",
reply: "Requesting permission to communicate...",
goto: "requested",
),
},
),
4294967297: (
components: {
"outfly::actor::ChatBranch": (
id: "hialien",
name: "Icarus",
label: "requested",
delay: 1.0,
sound: "chat",
reply: "Oh hey there, didn't even notice you! Was playing some VR game! What's up?",
goto: "reply1",
),
},
),
4294967298: (
components: {
"outfly::actor::ChatBranch": (
id: "hialien",
name: "Icarus",
label: "reply1",
delay: 3.0,
sound: "chat",
reply: "Not so chatty, huh? That's ok. See you around.",
goto: "EXIT",
),
},
),
},
)