Browse Source

changed config to contain an array of dialogue elements, positioned cameras

Aufnahmen_Investordays
Bianca Volz 5 days ago
parent
commit
1efc6292ef
  1. BIN
      Unreal/Content/SPIE/BP/Mode/States/State_SPIE_DialogueIntro_InnovationDay.uasset
  2. BIN
      Unreal/Content/SPIE/BP/S_SPIE_ConfigSettings.uasset
  3. BIN
      Unreal/Content/SPIE/Maps/M_SPIE_Startup.umap
  4. 55
      Unreal/Content/Schema/Spie_Config.schema.json

BIN
Unreal/Content/SPIE/BP/Mode/States/State_SPIE_DialogueIntro_InnovationDay.uasset (Stored with Git LFS)

Binary file not shown.

BIN
Unreal/Content/SPIE/BP/S_SPIE_ConfigSettings.uasset (Stored with Git LFS)

Binary file not shown.

BIN
Unreal/Content/SPIE/Maps/M_SPIE_Startup.umap (Stored with Git LFS)

Binary file not shown.

55
Unreal/Content/Schema/Spie_Config.schema.json

@ -9,6 +9,61 @@
"TTS" "TTS"
], ],
"Variables": [ "Variables": [
{
"BiancaDialogues":
{
"type": "array",
"itemsType": "struct",
"itemsFields":
{
"Input":
{
"type": "string"
},
"Type":
{
"type": "enum",
"tooltip": "How to handle the input text",
"enum": [
"Repeat",
"Rephrase",
"AI",
"Custom"
],
"enumTypeName": "S_DialogueType"
},
"DialogueClass":
{
"type": "string"
},
"BeginDelay":
{
"type": "float",
"tooltip": "-1 means it will wait for user input via button or keyboard, values above 0 will register"
},
"PostDelay":
{
"type": "float",
"tooltip": "-1 means it will wait for user input via button or keyboard, values above 0 will register"
}
},
"default": [
{
"Input": "Hey!",
"Type": "Repeat",
"BeginDelay": 0,
"PostDelay": -1
},
{
"Input": "Du!",
"Type": "Repeat",
"BeginDelay": 0,
"PostDelay": -1
}
],
"category": "SPIESettings"
}
},
{ {
"UseAvatarWithSafetyVest": "UseAvatarWithSafetyVest":
{ {

Loading…
Cancel
Save