boku-ilen / geodot-plugin

Godot plugin for loading geospatial data
GNU General Public License v3.0
111 stars 19 forks source link

Update bindings (`_bind_methods()`) with proper argument names (and possibly a description) #84

Open MathiasBaumgartinger opened 1 year ago

MathiasBaumgartinger commented 1 year ago

Godot 4 made working with addons such as geodot much more appealing, as it includes things such as documentation and intelligent code completion right in the editor. As such, including proper argument names or descriptions in the bindings might be beneficial:

image

image

https://github.com/boku-ilen/geodot-plugin/blob/master/src/geodata.cpp#L110 as shown in the screenshot above, the referenced line misses one named argument. Maybe there is also some way to add a description?

kb173 commented 1 year ago

Adding a description is not yet possible, here's the relevant Godot pull request: https://github.com/godotengine/godot/pull/75415