r3-next/levels/ast2.gd

24 lines
848 B
GDScript3
Raw Permalink Normal View History

2023-09-07 19:22:40 +02:00
extends Sprite2D
2023-09-08 21:50:34 +02:00
var origpos
#var origmpos
2023-09-07 19:22:40 +02:00
# Called when the node enters the scene tree for the first time.
#var velocity = Input.get_vector("move_left", "move_right", "move_forward", "move_back")
func _ready():
2023-09-08 21:50:34 +02:00
origpos = self.position
#origmpos = get_viewport().get_mouse_position()
2023-09-07 19:22:40 +02:00
pass # Replace with function body.
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):
var velocity = Vector2.ZERO
2023-10-09 18:37:22 +02:00
if Global.live == 1:
2023-12-02 21:44:54 +01:00
velocity = (Vector2.RIGHT.rotated(rotation) * -200 * Global.xm * delta)-Vector2.UP.rotated(rotation) * -200 * Global.ym * delta
origpos = self.position
2023-09-08 21:50:34 +02:00
#origmpos = get_viewport().get_mouse_position()
2023-09-07 19:22:40 +02:00
#if Input.get_joy_axis(0,JOY_AXIS_LEFT_Y) != 0:
# velocity = Vector2.UP.rotated(rotation) * -400 * Input.get_joy_axis(0,JOY_AXIS_LEFT_Y)
2023-12-02 21:44:54 +01:00
position += velocity
2023-09-07 19:22:40 +02:00
#pass