From 694f280acddebac7be49d7a7b9130b88195c9086 Mon Sep 17 00:00:00 2001 From: vitormaduro <49737868+vitormaduro@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:14:27 -0300 Subject: [PATCH] Updated C# example for method AddPropertyInfo --- doc/classes/ProjectSettings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/classes/ProjectSettings.xml b/doc/classes/ProjectSettings.xml index f426030f98b..2d74577d950 100644 --- a/doc/classes/ProjectSettings.xml +++ b/doc/classes/ProjectSettings.xml @@ -43,8 +43,8 @@ var propertyInfo = new Godot.Collections.Dictionary { {"name", "category/propertyName"}, - {"type", Variant.Type.Int}, - {"hint", PropertyHint.Enum}, + {"type", (int)Variant.Type.Int}, + {"hint", (int)PropertyHint.Enum}, {"hint_string", "one,two,three"}, };