learn-gdscript
learn-gdscript copied to clipboard
Windows 11: crash during, lesson 10 the game loop, creating circular movement.
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
- Go to lesson 10 the game loop, creating circular movement.
- type in:
func _process(delta):
rotate(0.05)
move_local_x(5, true)
- press run
- 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

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