diff options
author | metamuffin <metamuffin@disroot.org> | 2024-09-27 15:06:25 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-09-27 15:06:32 +0200 |
commit | efb1bdf2440b02438082c91caf67d3a9b7b5d55d (patch) | |
tree | 274c5effaef44486627a268fa7cdfb630d09622e /client/menu | |
parent | 70b463b5d11d4dbcef9631776bc69a00c30e7aee (diff) | |
download | hurrycurry-efb1bdf2440b02438082c91caf67d3a9b7b5d55d.tar hurrycurry-efb1bdf2440b02438082c91caf67d3a9b7b5d55d.tar.bz2 hurrycurry-efb1bdf2440b02438082c91caf67d3a9b7b5d55d.tar.zst |
disable floor optimization in menu background
Diffstat (limited to 'client/menu')
-rw-r--r-- | client/menu/menu_background.gd | 1 | ||||
-rw-r--r-- | client/menu/menu_background.tscn | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/client/menu/menu_background.gd b/client/menu/menu_background.gd index de5cafea..33ec6e43 100644 --- a/client/menu/menu_background.gd +++ b/client/menu/menu_background.gd @@ -35,3 +35,4 @@ func _ready(): if bucket.size() == 0: continue var tile_name = bucket[randi() % bucket.size()] map.set_tile(Vector2i(x,y), tile_name) + map.flush() diff --git a/client/menu/menu_background.tscn b/client/menu/menu_background.tscn index 19f0d506..26fe102a 100644 --- a/client/menu/menu_background.tscn +++ b/client/menu/menu_background.tscn @@ -69,3 +69,4 @@ mesh = SubResource("QuadMesh_fvp2p") surface_material_override/0 = SubResource("ShaderMaterial_gd87g") [node name="Map" parent="." instance=ExtResource("3_p80a7")] +optimize = false |