소스 검색

Merge pull request #55943 from jvanmourik/master

glTF animation parsing: Changed the 'loop' and 'cycle' animation name keywords to be case-insensitive
Rémi Verschelde 3 년 전
부모
커밋
602e967ba8
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      modules/gltf/gltf_document.cpp

+ 2 - 1
modules/gltf/gltf_document.cpp

@@ -4938,7 +4938,8 @@ Error GLTFDocument::_parse_animations(Ref<GLTFState> state) {
 
 		if (d.has("name")) {
 			const String name = d["name"];
-			if (name.begins_with("loop") || name.ends_with("loop") || name.begins_with("cycle") || name.ends_with("cycle")) {
+			const String name_lower = name.to_lower();
+			if (name_lower.begins_with("loop") || name_lower.ends_with("loop") || name_lower.begins_with("cycle") || name_lower.ends_with("cycle")) {
 				animation->set_loop(true);
 			}
 			animation->set_name(_gen_unique_animation_name(state, name));