aboutsummaryrefslogtreecommitdiff
path: root/client/system/gltf_apply_visibility.gd
diff options
context:
space:
mode:
Diffstat (limited to 'client/system/gltf_apply_visibility.gd')
-rw-r--r--client/system/gltf_apply_visibility.gd4
1 files changed, 1 insertions, 3 deletions
diff --git a/client/system/gltf_apply_visibility.gd b/client/system/gltf_apply_visibility.gd
index 5635bf6e..8a2bed01 100644
--- a/client/system/gltf_apply_visibility.gd
+++ b/client/system/gltf_apply_visibility.gd
@@ -1,5 +1,5 @@
# Hurry Curry! - a game about cooking
-# Copyright (C) 2025 Hurry Curry! contributors
+# Copyright (C) 2026 Hurry Curry! Contributors
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
@@ -28,8 +28,6 @@ func _export_post(state: GLTFState) -> Error:
return Error.OK
func hide_node(nodes: Array, node: Dictionary):
- if node.has("mesh"): print("clear mesh")
node.erase("mesh")
for child_index in node.get("children", []):
- print("clear child child_index")
hide_node(nodes, nodes[child_index])