Lesson 11. Time Delta: Moving In A Circle Using Delta tests fail if the scaled param is included on move_local_x even when the value is set to the default value of false.
This code fails:
func _process(delta):
rotate(2 * delta)
move_local_x(100 * delta, false)
This code passes:
func _process(delta):
rotate(2 * delta)
move_local_x(100 * delta)