feat: scale village queries and enrich Jajce center

This commit is contained in:
Rijad Zuzo
2026-07-16 23:51:08 +02:00
parent 4be72639d8
commit 2c88ed6ea8
48 changed files with 2059 additions and 280 deletions
+45
View File
@@ -0,0 +1,45 @@
[gd_scene load_steps=6 format=3]
[ext_resource type="Script" path="res://world/jajce/CozyButterfly.gd" id="1_script"]
[sub_resource type="StandardMaterial3D" id="Material_body"]
albedo_color = Color(0.18, 0.1, 0.06, 1)
roughness = 0.85
[sub_resource type="CapsuleMesh" id="Mesh_body"]
material = SubResource("Material_body")
radius = 0.08
height = 0.42
radial_segments = 8
rings = 3
[sub_resource type="StandardMaterial3D" id="Material_wing"]
albedo_color = Color(0.94, 0.53, 0.19, 1)
roughness = 0.72
emission_enabled = true
emission = Color(0.32, 0.08, 0.01, 1)
emission_energy_multiplier = 0.18
[sub_resource type="SphereMesh" id="Mesh_wing"]
material = SubResource("Material_wing")
radius = 0.42
height = 0.7
radial_segments = 12
rings = 6
[node name="CozyButterfly" type="Node3D"]
script = ExtResource("1_script")
[node name="Body" type="MeshInstance3D" parent="."]
rotation_degrees = Vector3(90, 0, 0)
mesh = SubResource("Mesh_body")
[node name="LeftWing" type="MeshInstance3D" parent="."]
position = Vector3(-0.3, 0, 0)
scale = Vector3(1, 0.12, 0.72)
mesh = SubResource("Mesh_wing")
[node name="RightWing" type="MeshInstance3D" parent="."]
position = Vector3(0.3, 0, 0)
scale = Vector3(1, 0.12, 0.72)
mesh = SubResource("Mesh_wing")