Added Map; Added Spawners; Changed Decorations; Cleaned up Code and some Settings; Added Enemy
This commit is contained in:
parent
e82438139f
commit
e18beb6c4c
160 changed files with 4674 additions and 182 deletions
|
|
@ -1,12 +1,35 @@
|
|||
[gd_scene load_steps=2 format=3 uid="uid://dxpd1pq7v6ing"]
|
||||
[gd_scene load_steps=5 format=3 uid="uid://dxpd1pq7v6ing"]
|
||||
|
||||
[ext_resource type="Script" path="res://scenes/game/objects/object.gd" id="1_3y27f"]
|
||||
[ext_resource type="Texture2D" uid="uid://c4h5dodgulduy" path="res://Assets/Icons/Pickup.png" id="2_pqvu2"]
|
||||
|
||||
[sub_resource type="CanvasItemMaterial" id="CanvasItemMaterial_n7gny"]
|
||||
light_mode = 2
|
||||
|
||||
[sub_resource type="CircleShape2D" id="CircleShape2D_vvfu1"]
|
||||
radius = 8.0
|
||||
|
||||
[node name="Object" type="Area2D" groups=["Object"]]
|
||||
collision_layer = 4
|
||||
collision_mask = 8
|
||||
light_mask = 16
|
||||
visibility_layer = 16
|
||||
material = SubResource("CanvasItemMaterial_n7gny")
|
||||
collision_layer = 16
|
||||
collision_mask = 96
|
||||
script = ExtResource("1_3y27f")
|
||||
|
||||
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
|
||||
position = Vector2(0, -4)
|
||||
shape = SubResource("CircleShape2D_vvfu1")
|
||||
|
||||
[node name="AnimatedSprite2D" type="AnimatedSprite2D" parent="."]
|
||||
[node name="Sprite2D" type="Sprite2D" parent="."]
|
||||
use_parent_material = true
|
||||
position = Vector2(0, -4)
|
||||
|
||||
[node name="InteractIcon" type="Sprite2D" parent="."]
|
||||
z_index = 5
|
||||
position = Vector2(5.68434e-14, -16)
|
||||
scale = Vector2(0.625, 0.625)
|
||||
texture = ExtResource("2_pqvu2")
|
||||
|
||||
[connection signal="area_entered" from="." to="." method="_on_area_entered"]
|
||||
[connection signal="area_exited" from="." to="." method="_on_area_exited"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue