Skip to content

Commit d8c75b5

Browse files
authored
Hotfix: Remove a warning (#2440)
GLTF files with a node named "world" were warning, which is not necessary. This changes the warning to a debug.
2 parents f5c6c8b + e84151d commit d8c75b5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ requires = ["setuptools >= 61.0", "wheel"]
55
[project]
66
name = "trimesh"
77
requires-python = ">=3.8"
8-
version = "4.7.3"
8+
version = "4.7.4"
99
authors = [{name = "Michael Dawson-Haggerty", email = "[email protected]"}]
1010
license = {file = "LICENSE.md"}
1111
description = "Import, export, process, analyze and view triangular meshes."

trimesh/exchange/gltf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1728,7 +1728,7 @@ def _read_buffers(
17281728
base_frame = "world"
17291729
if base_frame in name_index:
17301730
# todo : handle this?
1731-
log.warning("file contains a `world` node, we may stomp on it")
1731+
log.debug("file contains a `world` node, we may stomp on it")
17321732
names[base_frame] = base_frame
17331733

17341734
# visited, kwargs for scene.graph.update

0 commit comments

Comments
 (0)