mirror of
https://github.com/Relintai/pandemonium_demo_projects.git
synced 2025-01-04 14:49:41 +01:00
19 lines
311 B
GDScript3
19 lines
311 B
GDScript3
|
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
|