Merge pull request #80851 from vitormaduro/master

Updated C# example of AddPropertyInfo
This commit is contained in:
Rémi Verschelde 2023-08-22 09:09:24 +02:00
commit 0024d2e541
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -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"},
};