learn-gdscript
learn-gdscript copied to clipboard
Windows 11 - Lessson 7: Practice 2 Crash
Bug report
Bug Description App freezes then crashes upon pressing "run" if their is an error with the position code.
How to recreate.
- Write this code.
func run():
position.x(100)
position.y(100)
draw_rectangle(100, 100)
Or you can do this:
func run():
position.x = 100
position.y = 100
draw_rectangle(100, 100)
- Then click "run"
- The app will freeze for a second then crash.