diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2022-07-20 19:05:49 +0200 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2022-08-08 19:30:34 +0200 |
commit | 27a072c8845c3919b49426d161f83c360c0bfe6f (patch) | |
tree | 4d07aa3b0de32633f47666f6547d8148d42e5c97 /core/config/engine.h | |
parent | 862dedcefee5d22449eca711aa9af33c4377d31a (diff) | |
download | redot-engine-27a072c8845c3919b49426d161f83c360c0bfe6f.tar.gz |
Print expected `os.arch` tuple for current platform in GDExtension error
This also adds `Engine.get_architecture_name()` to get the name of the
CPU architecture the Godot binary was built for.
Diffstat (limited to 'core/config/engine.h')
-rw-r--r-- | core/config/engine.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/config/engine.h b/core/config/engine.h index 68562643e7..649be23717 100644 --- a/core/config/engine.h +++ b/core/config/engine.h @@ -142,6 +142,8 @@ public: void set_write_movie_path(const String &p_path); String get_write_movie_path() const; + String get_architecture_name() const; + void set_shader_cache_path(const String &p_path); String get_shader_cache_path() const; |