diff options
| author | Pedro J. Estébanez | 2017-05-17 14:47:17 +0200 |
|---|---|---|
| committer | Pedro J. Estébanez | 2017-05-17 14:47:17 +0200 |
| commit | 7b192313b3141322858cef646f8f76cf5d0f4152 (patch) | |
| tree | 31b262b936c23f3d45281ab184813a09127269e7 /modules/gdscript/gd_function.h | |
| parent | aa046a85dc791e07a243d63570987fbddb2f04c9 (diff) | |
| download | godot-7b192313b3141322858cef646f8f76cf5d0f4152.tar.gz godot-7b192313b3141322858cef646f8f76cf5d0f4152.tar.zst godot-7b192313b3141322858cef646f8f76cf5d0f4152.zip | |
Add extended check option to GDFunctionState::is_valid()
Diffstat (limited to 'modules/gdscript/gd_function.h')
| -rw-r--r-- | modules/gdscript/gd_function.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gd_function.h b/modules/gdscript/gd_function.h index 5f143cce8..29d09052a 100644 --- a/modules/gdscript/gd_function.h +++ b/modules/gdscript/gd_function.h @@ -194,7 +194,7 @@ protected: static void _bind_methods(); public: - bool is_valid() const; + bool is_valid(bool p_extended_check = false) const; Variant resume(const Variant &p_arg = Variant()); GDFunctionState(); ~GDFunctionState(); |
