learn-gdscript icon indicating copy to clipboard operation
learn-gdscript copied to clipboard

Windows 11 - Lessson 7: Practice 2 Crash

Open Gigga-Byte opened this issue 3 years ago • 0 comments

Bug report

Bug Description App freezes then crashes upon pressing "run" if their is an error with the position code.

How to recreate.

  1. 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)
  1. Then click "run"
  2. The app will freeze for a second then crash.

Gigga-Byte avatar Dec 29 '22 21:12 Gigga-Byte