Updating prologue
This commit is contained in:
@ -84,11 +84,12 @@ void VNSceneGen::test(
|
|||||||
case VN_SCENE_EVENT_TYPE_CHOICES: {
|
case VN_SCENE_EVENT_TYPE_CHOICES: {
|
||||||
initType = "VNChoiceEvent";
|
initType = "VNChoiceEvent";
|
||||||
toInclude = "games/vn/events/VNChoiceEvent.hpp";
|
toInclude = "games/vn/events/VNChoiceEvent.hpp";
|
||||||
|
|
||||||
line(&afterLines, eventName + "->key = \"" + event->choices.key+ "\";", "");
|
line(&afterLines, eventName + "->key = \"" + event->choices.key+ "\";", "");
|
||||||
line(&afterLines, eventName + "->text = \"" + event->choices.titles.begin()->text + "\";", "");
|
line(&afterLines, eventName + "->text = " + event->choices.titles.begin()->text + ";", "");
|
||||||
auto itChoices = event->choices.choices.begin();
|
auto itChoices = event->choices.choices.begin();
|
||||||
while(itChoices != event->choices.choices.end()) {
|
while(itChoices != event->choices.choices.end()) {
|
||||||
line(&afterLines, eventName + "->choices[\"" + itChoices->value + "\"] = \"" + itChoices->texts.begin()->text + "\";", "");
|
line(&afterLines, eventName + "->choices[\"" + itChoices->value + "\"] = " + itChoices->texts.begin()->text + ";", "");
|
||||||
++itChoices;
|
++itChoices;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
Reference in New Issue
Block a user