minijam-166/scenes/Map.tscn
2024-09-01 12:41:08 +02:00

39 lines
1.4 KiB
Plaintext

[gd_scene load_steps=5 format=3 uid="uid://d3hul8b7hlmj7"]
[ext_resource type="Script" path="res://scripts/map.gd" id="1_3np0o"]
[ext_resource type="PackedScene" uid="uid://6ferubyu2uy1" path="res://scenes/Scanners.tscn" id="1_6mlj0"]
[ext_resource type="Texture2D" uid="uid://dtvde6oxrfuk1" path="res://assets/texture/ground.jpg" id="3_20ci8"]
[ext_resource type="PackedScene" path="res://objects/Animal.tscn" id="4_pkphc"]
[node name="Map" type="Node2D"]
script = ExtResource("1_3np0o")
[node name="Scanners" parent="." instance=ExtResource("1_6mlj0")]
[node name="Ground" type="Polygon2D" parent="."]
z_index = -1
texture_repeat = 2
texture = ExtResource("3_20ci8")
texture_scale = Vector2(5, 5)
polygon = PackedVector2Array(571, 76, 228, 282, 987, 657, 1379, 208)
[node name="Animals" type="Node" parent="."]
[node name="Animal" parent="Animals" instance=ExtResource("4_pkphc")]
position = Vector2(2121, 394)
plant_need = "Chardon"
[node name="Animal2" parent="Animals" instance=ExtResource("4_pkphc")]
position = Vector2(382, 2220)
plant_need = "Chardon"
[node name="Animal3" parent="Animals" instance=ExtResource("4_pkphc")]
position = Vector2(1858, 2027)
plant_need = "Buisson"
[node name="Animal4" parent="Animals" instance=ExtResource("4_pkphc")]
position = Vector2(853, 1193)
plant_need = "Chene"
[connection signal="liberated" from="Animals/Animal" to="." method="_on_animal_liberated"]