- Edited
I need a list with all the properties like max_value of VScrollBar, but the doc page (https://docs.godotengine.org/en/4.1/classes/class_vscrollbar.html#properties) do not include max_value and probably omit others, too.
So where is the documentation / list of really all the properties?!
This comes from situations where I see a property being used in a tutorial but need to compare against a list to find...
that a property is NOT in the list, like "scroll_vertical", which is instead a property of ScrollContainer. I want to do a Ctrl-F search or a grep or similar automated fast search through the whole list to quickly see: OK, scroll_vertical is not part of VScrollBar at all, I have to check my assumptions.
maybe also to find the current name of a property in my current Godot version (tutorial uses an older version. and there have been changes like .instance() vs. .instantiate()), which I would probably eyeball quickly in a list
I sorted these example out, so I am not asking for help there, but for similar situations in the future I want to be faster and check against the complete list of properties.
What I already tried/found:
Auto-Completion includes max_value, but I do not feel certain that any one probing of autocomplete really shows me all of them that I need to see, at the given moment, as it is just a short list where other stuff is mixed in. I want to check against the complete list of properties.
I realized that I could check all classes that VScrollBar inherits from and find max_value under the Range class, but that is not only tedious (search through many web pages, especially when I search a property that is not part of it at all like the scroll_vertical example) but that gets abstract und uncertain fast (maximum value of what exactly now?).
I started with Godot today, so I hope I am missing something that many already know.
If the docs do not offer what I want, then a coder's way to list all properties?
Thanks in advance!