Heigvd / Wegas

A Web Game Authoring System coded in Java and Javascript for rapid development of serious games without programming skills.
https://wegas.albasim.ch
MIT License
28 stars 15 forks source link

Impacts generated code for booleans #1933

Open xgo-work opened 8 months ago

xgo-work commented 8 months ago

On setting up variable impacts based on a boolean variable, the checkbox's initial set value generated code is the following

Variable.find(gameModel, 'showPatientModal').setValue(self, undefined);

One would rather expect

Variable.find(gameModel, 'showPatientModal').setValue(self, false);