fix: reduced voxel GI resolution in youth room to restore light range

This commit is contained in:
tiger tiger tiger 2026-01-24 10:14:20 +01:00
parent b555ffaf46
commit c645a39eba
3 changed files with 3 additions and 4 deletions

View File

@ -892,7 +892,7 @@ light_cull_mask = 4293918721
omni_range = 0.147682 omni_range = 0.147682
[node name="OmniLight3D2" type="OmniLight3D" parent="visuals/lights"] [node name="OmniLight3D2" type="OmniLight3D" parent="visuals/lights"]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2.6832433, 0.72138906, -0.30152392) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2.837372, 0.7908516, -0.36576784)
light_color = Color(0.894118, 0.87451, 0.686275, 1) light_color = Color(0.894118, 0.87451, 0.686275, 1)
light_size = 0.2 light_size = 0.2
light_specular = 0.1 light_specular = 0.1
@ -900,7 +900,7 @@ light_bake_mode = 1
light_cull_mask = 4293918721 light_cull_mask = 4293918721
shadow_enabled = true shadow_enabled = true
shadow_caster_mask = 4293918721 shadow_caster_mask = 4293918721
omni_range = 1.5 omni_range = 1.733925
omni_attenuation = 0.3 omni_attenuation = 0.3
[node name="OmniLight3D4" type="OmniLight3D" parent="visuals/lights"] [node name="OmniLight3D4" type="OmniLight3D" parent="visuals/lights"]
@ -1016,7 +1016,6 @@ light_array = Array[Vector3]([Vector3(-0.545, 0.915, 1.035), Vector3(-0.47, 0.85
[node name="VoxelGI" type="VoxelGI" parent="."] [node name="VoxelGI" type="VoxelGI" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.6709186, 1.184079, 0.941082) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.6709186, 1.184079, 0.941082)
subdiv = 2
size = Vector3(6.1783752, 2.4035423, 4.126381) size = Vector3(6.1783752, 2.4035423, 4.126381)
data = ExtResource("40_ea6x8") data = ExtResource("40_ea6x8")

View File

@ -211,7 +211,7 @@ func get_cards_by_name_array(names: Array[StringName]) -> Dictionary[String, Arr
output["cards"].append(create_from_id(all_ids[card_name])) output["cards"].append(create_from_id(all_ids[card_name]))
else: else:
if not card_name in sticky_ids: if not card_name in sticky_ids:
push_error("No card or sticky with name '%s'!" % card_name) push_warning("No card or sticky with name '%s'!" % card_name)
else: else:
output["sticky_notes"].append(create_from_id(all_ids[card_name])) output["sticky_notes"].append(create_from_id(all_ids[card_name]))