15 lines
238 B
GDScript
15 lines
238 B
GDScript
extends Node2D
|
|
|
|
func _ready():
|
|
if not get_tree().root.has_node("Root"):
|
|
return ;
|
|
|
|
GallerySingleton.AddImage("Death_Stairs");
|
|
|
|
func InitForGallery()->Array:
|
|
scale = Vector2(0.5, 0.5)
|
|
|
|
return [];
|
|
|
|
func SetSettings(setting):
|
|
pass
|