mirror of
https://github.com/Relintai/pandemonium_demo_projects.git
synced 2024-12-21 13:56:50 +01:00
19 lines
311 B
GDScript
19 lines
311 B
GDScript
extends Area2D
|
|
|
|
const DEFAULT_SPEED = 100
|
|
|
|
var _speed = DEFAULT_SPEED
|
|
var direction = Vector2.LEFT
|
|
|
|
onready var _initial_pos = position
|
|
|
|
func _process(delta):
|
|
_speed += delta * 2
|
|
position += _speed * delta * direction
|
|
|
|
|
|
func reset():
|
|
direction = Vector2.LEFT
|
|
position = _initial_pos
|
|
_speed = DEFAULT_SPEED
|