Sfoglia il codice sorgente

Set a sprite to spawners

DricomDragon 4 anni fa
parent
commit
5056884cf1
2 ha cambiato i file con 5 aggiunte e 3 eliminazioni
  1. 1 1
      Spawner.gd
  2. 4 2
      Spawner.tscn

+ 1 - 1
Spawner.gd

@@ -1,4 +1,4 @@
-extends Position2D
+extends Sprite
 
 func _ready():
 	add_to_group("spawn")

+ 4 - 2
Spawner.tscn

@@ -1,6 +1,8 @@
-[gd_scene load_steps=2 format=2]
+[gd_scene load_steps=3 format=2]
 
 [ext_resource path="res://Spawner.gd" type="Script" id=1]
+[ext_resource path="res://Resources/Images/spawn.png" type="Texture" id=2]
 
-[node name="Spawn" type="Position2D"]
+[node name="Spawn" type="Sprite"]
+texture = ExtResource( 2 )
 script = ExtResource( 1 )