Where is a list of function definitions for GDScript?

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

Is there a list of function definitions for GDScript? For instance, hide(). I didn’t know that existed until I followed the tutorial.

:bust_in_silhouette: Reply From: Gluon

The functions are defined as part of each node so some functions will exist for certain nodes and not others. If you are in the editor and you want to know what functions exist for a node you can right click the node in the editor and select documentation, this will bring up a page with all the properties and methods applicable to that node type.

Alternatively you can go through the documentation Godot Docs – 4.1 branch — Godot Engine (stable) documentation in English online which again will let you see all of the functions on a node by node basis.

:bust_in_silhouette: Reply From: magicalogic

Sometimes you don’t see all the functions in a class when you view the documentation because some of them are inherited from parent classes. Check what a class inherits from if you need to know all the method it has.