From 5a7a411916937dcfae3def1fda6cc60aa63f537c Mon Sep 17 00:00:00 2001 From: Haoyu Qiu Date: Sat, 7 Jun 2025 00:22:21 +0800 Subject: [PATCH] Fix capitalization for visionOS and tvOS --- editor/editor_property_name_processor.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/editor/editor_property_name_processor.cpp b/editor/editor_property_name_processor.cpp index 8bfce1e3cf..d0cfe4a218 100644 --- a/editor/editor_property_name_processor.cpp +++ b/editor/editor_property_name_processor.cpp @@ -289,6 +289,7 @@ EditorPropertyNameProcessor::EditorPropertyNameProcessor() { capitalize_string_remaps["textfile"] = "TextFile"; capitalize_string_remaps["tls"] = "TLS"; capitalize_string_remaps["tv"] = "TV"; + capitalize_string_remaps["tvos"] = "tvOS"; capitalize_string_remaps["uastc"] = "UASTC"; capitalize_string_remaps["ui"] = "UI"; capitalize_string_remaps["uri"] = "URI"; @@ -303,6 +304,7 @@ EditorPropertyNameProcessor::EditorPropertyNameProcessor() { capitalize_string_remaps["uv1"] = "UV1"; capitalize_string_remaps["uv2"] = "UV2"; capitalize_string_remaps["vector2"] = "Vector2"; + capitalize_string_remaps["visionos"] = "visionOS"; capitalize_string_remaps["vpn"] = "VPN"; capitalize_string_remaps["vram"] = "VRAM"; capitalize_string_remaps["vrs"] = "VRS";