diff options
| author | Rémi Verschelde | 2017-05-18 12:51:29 +0200 |
|---|---|---|
| committer | GitHub | 2017-05-18 12:51:29 +0200 |
| commit | dcc44f05b76d6c92138e55e6c69868ee6194c548 (patch) | |
| tree | d3a606d78cd97716356d743cb6878dc536a7abf2 /modules/gdscript/gd_function.h | |
| parent | 787dad5ac4341a90ecf135884d8ca71bdbd5d252 (diff) | |
| parent | b69d4ebff40c4b8fc55db00ad84514aff48f0c5d (diff) | |
| download | godot-dcc44f05b76d6c92138e55e6c69868ee6194c548.tar.gz godot-dcc44f05b76d6c92138e55e6c69868ee6194c548.tar.zst godot-dcc44f05b76d6c92138e55e6c69868ee6194c548.zip | |
Merge pull request #8798 from RandomShaper/gdfs-ext-check
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 f0bf33147..6d20b1977 100644 --- a/modules/gdscript/gd_function.h +++ b/modules/gdscript/gd_function.h @@ -237,7 +237,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(); |
