Fix codeblock tag in classes.xml for EditorSettings

This commit is contained in:
Emmanuel Leblond 2017-01-08 11:47:41 +01:00 committed by Rémi Verschelde
parent 02fbd10230
commit 28d7486267

View File

@ -12293,7 +12293,8 @@
</argument>
<description>
Add a custom property info to a property. The dictionary must contain: name:[String](the name of the property) and type:[int](see TYPE_* in [@Global Scope]), and optionally hint:[int](see PROPERTY_HINT_* in [@Global Scope]), hint_string:[String].
Example:[codeblock]
Example:
[codeblock]
editor_settings.set("category/property_name", 0)
var property_info = {
@ -12303,7 +12304,8 @@
"hint_string": "one,two,three"
}
editor_settings.add_property_info(property_info)[/codeblock]
editor_settings.add_property_info(property_info)
[/codeblock]
</description>
</method>
<method name="erase">