Where is nodes place in the source code?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By Ternarycat

Hi. I see that the documentation does not agree with what is in the node inspector for ProgressBar. 2019-06-30-12-37-57 hosted at ImgBB — ImgBB ProgressBar — Godot Engine (3.1) documentation in English

I want to see the source code of the nodes to see which methods are available in each node.
Thanks.

:bust_in_silhouette: Reply From: kidscancode

The properties you see there come from the Range class, as indicated in the Inspector section headings. ProgressBar extends Range:

which extends Control, and so on. You can also see the inheritance chain at the top of the API page for each class.