22 lines
736 B
GDScript
22 lines
736 B
GDScript
extends Node2D
|
|
|
|
# Called when the node enters the scene tree for the first time.
|
|
func _ready() -> void:
|
|
pass # Replace with function body.
|
|
|
|
|
|
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
|
func _process(delta: float) -> void:
|
|
if Input.is_action_pressed("MoveUp"):
|
|
global_position += Vector2.UP * 2
|
|
if Input.is_action_pressed("MoveDown"):
|
|
global_position += Vector2.DOWN * 2
|
|
if Input.is_action_pressed("MoveLeft"):
|
|
global_position += Vector2.LEFT * 2
|
|
if Input.is_action_pressed("MoveRight"):
|
|
global_position += Vector2.RIGHT * 2
|
|
|
|
if Input.is_action_just_released("ZoomIn"):
|
|
$SmartCamera2D.zoom += Vector2.ONE
|
|
if Input.is_action_just_released("ZoomOut"):
|
|
$SmartCamera2D.zoom -= Vector2.ONE |