rakugoteam / Rakugo-Dialogue-System

Inspired by Ren'Py, Rakugo is a project aiming to provide a way to make narrative-based games on Godot easily. Simplify your project, if it is a visual novel, point and click, RPG, interactive text game or many other styles and blends of styles.
https://rakugoteam.github.io
MIT License
221 stars 7 forks source link

Handle common operators for variable assignment #262

Closed theludovyc closed 1 year ago

theludovyc commented 1 year ago

For now is just possible to asign a value to a variable. Not an expression. So we cannot increment it. This is bad !

We can do

variable = value

We cannot do

variable = variable + value
variable += value

Common operators : +=, -=, *=, /=

PS: Sorry @Jeremi360 to have not well understand you at this moment #237