From c1bc4fbd20d7e48e78d643fdb10230333a59ded1 Mon Sep 17 00:00:00 2001 From: Aaron Franke Date: Sun, 3 Sep 2023 02:47:34 -0500 Subject: [PATCH] GLTF: Change "Camera3D" generated node name to "Camera" --- modules/gltf/gltf_document.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/gltf/gltf_document.cpp b/modules/gltf/gltf_document.cpp index 74de40e901a..4fb31480c17 100644 --- a/modules/gltf/gltf_document.cpp +++ b/modules/gltf/gltf_document.cpp @@ -5280,7 +5280,7 @@ void GLTFDocument::_assign_node_names(Ref p_state) { if (gltf_node->mesh >= 0) { gltf_node_name = "Mesh"; } else if (gltf_node->camera >= 0) { - gltf_node_name = "Camera3D"; + gltf_node_name = "Camera"; } else { gltf_node_name = "Node"; }