- Joined
- Aug 24, 2017
- Messages
- 81
- Reaction score
- 8
- First Language
- Chinese
- Primarily Uses
- RMMV
Hi,
I got question about "show choice"
$gameMessage.add('Text');
won't show text.
Now I use common event to show text, and it truly did.
But how can I just show text inside if(){}
Any solution?
I got question about "show choice"
Code:
$gameMessage.add('Which');
$gameMessage.setChoices(['One', 'Two'], 0, -1);
$gameMessage.setChoiceCallback(function (choice) {
if(choice === 0){
$gameMessage.add('This is 1.');
};
if(choice === 1){
$gameMessage.add('This is 2.');
};
})
won't show text.
Now I use common event to show text, and it truly did.
But how can I just show text inside if(){}
Any solution?
