Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR TYPESCRIPT

move between points in godot

# Moves to Vector(0,0) at a speed of 1 unit per second
var speed = 1 # Change this to increase it to more units/second
position = position.move_toward(Vector2(0,0), delta * speed)
Source by godotlearn.com #
 
PREVIOUS NEXT
Tagged: #move #points #godot
ADD COMMENT
Topic
Name
2+9 =