Is it possible to programmatically get the Godot engine version?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By Martin Treacy-Schwar

Hi,

Is it possible to programmatically get the Godot engine version?

Thanks,
Martin
Lead SDK Developer @ GameAnalytics

:bust_in_silhouette: Reply From: kidscancode

The Engine singleton contains this information:

Ah great thanks. Just what I was looking for. Can I call this from modules as well (i.e. from C++ land and Android Java land)?

Martin Treacy-Schwar | 2020-06-23 08:12

In C++, you can use Engine::get_singleton()->method_here(). I’m not sure about Android.

Calinou | 2020-06-29 12:46