From 4070f55ff0530ba3674df75d63f55e673d0b5d13 Mon Sep 17 00:00:00 2001
From: jvanmourik <jacco.vanmourik@gmail.com>
Date: Wed, 15 Dec 2021 01:25:30 +0100
Subject: [PATCH] glTF animation parsing: Changed the 'loop' and 'cycle'
 animation name keywords to be case-insensitive

---
 modules/gltf/gltf_document.cpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/modules/gltf/gltf_document.cpp b/modules/gltf/gltf_document.cpp
index 1c1ee5cd10f..16c413ad03c 100644
--- a/modules/gltf/gltf_document.cpp
+++ b/modules/gltf/gltf_document.cpp
@@ -4889,7 +4889,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));