Updating prologue
This commit is contained in:
@ -84,11 +84,12 @@ void VNSceneGen::test(
|
||||
case VN_SCENE_EVENT_TYPE_CHOICES: {
|
||||
initType = "VNChoiceEvent";
|
||||
toInclude = "games/vn/events/VNChoiceEvent.hpp";
|
||||
|
||||
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();
|
||||
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;
|
||||
}
|
||||
break;
|
||||
|
Reference in New Issue
Block a user