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

Windows 11: crash during, lesson 10 the game loop, creating circular movement.

Open norbyscook opened this issue 3 years ago • 0 comments

Describe the bug Learn gdscript will crash during, lesson 10 "the game loop" on the assignment "creating circular movement". It happens when I add more parameters to move_local_x() .

To Reproduce

  1. Go to lesson 10 the game loop, creating circular movement.
  2. type in:
func _process(delta):
	rotate(0.05)
	move_local_x(5, true)
  1. press run
  2. learn gdscript crashes

Expected behavior Robot will Rotate and move at the same time. Or It will tell me that I have an error.

Screenshots Screenshot 2022-12-25 201127

Information about your device (please complete the following information): OS Name Microsoft Windows 11 Home Version 10.0.22621 Build 22621 System Type x64-based PC Using Learn gdscript as an exe

** additional info ** typing in :

func _process(delta):
	rotate(0.05)
	move_local_x(5, false)

will also cause a crash

norbyscook avatar Dec 26 '22 04:12 norbyscook