You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When GDScript generates documentation for the getter / setter of custom class properties it doesn't mention the name of the existing class functions if used by the getter / setter, as seen below:
This is not inline with the way built-in class documentation is, as seen below:
I'm not too sure, but I'm inclined to believe that this was designed on purpose with the idea in mind that the getter / setter will be a code block (i.e. having no method name), but this fails to account for the use of existing class functions. Meaning that if I wanted to know the name of the getter / setter method I'd have to search for them in the source directly, which is not preferred.
Steps to reproduce
Open example project
Open documentation for "CustomClass"
No mention of getter / setter method name for custom_property_a property
Godot version
Godot 4.0 beta 4
System information
Windows 10
Issue description
When GDScript generates documentation for the getter / setter of custom class properties it doesn't mention the name of the existing class functions if used by the getter / setter, as seen below:
This is not inline with the way built-in class documentation is, as seen below:
I'm not too sure, but I'm inclined to believe that this was designed on purpose with the idea in mind that the getter / setter will be a code block (i.e. having no method name), but this fails to account for the use of existing class functions. Meaning that if I wanted to know the name of the getter / setter method I'd have to search for them in the source directly, which is not preferred.
Steps to reproduce
custom_property_a
propertyMinimal reproduction project
example.zip
The text was updated successfully, but these errors were encountered: