mirror of
https://github.com/Cookie-CHR/LD54-SPAce-ltd.git
synced 2024-11-22 07:24:18 +00:00
12 lines
204 B
GDScript3
12 lines
204 B
GDScript3
|
extends Area2D
|
||
|
|
||
|
@export var type = "planet"
|
||
|
|
||
|
@onready var sprite = $Sprite2D
|
||
|
|
||
|
func _ready():
|
||
|
sprite.texture = Diction.texture[type]
|
||
|
|
||
|
func _process(_delta):
|
||
|
global_position = get_global_mouse_position()
|