outfly/assets/scenes/conversations.scn.ron

58 lines
1.7 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",
2024-03-19 05:01:17 +00:00
delay: 3.0,
2024-03-19 04:38:11 +00:00
sound: "ping",
reply: "Requesting permission to communicate...",
goto: "requested",
),
},
),
4294967297: (
components: {
"outfly::actor::ChatBranch": (
id: "hialien",
name: "Icarus",
label: "requested",
delay: 8.0,
2024-03-19 04:38:11 +00:00
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",
2024-03-19 05:01:17 +00:00
delay: 1.0,
2024-03-19 04:38:11 +00:00
sound: "chat",
reply: "Not so chatty, huh? That's ok. See you around.",
2024-03-19 05:01:17 +00:00
goto: "disco",
),
},
),
4294967299: (
components: {
"outfly::actor::ChatBranch": (
id: "hialien",
name: "Icarus",
label: "disco",
delay: 0.0,
sound: "ping",
reply: "Disconnected.",
2024-03-19 04:38:11 +00:00
goto: "EXIT",
),
},
),
},
)