Skip to content

Lesson 11: Moving In A Circle Using Delta - including scaled param on move_local_x causes test failure #479

@danielbernard

Description

@danielbernard

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)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions