summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/gd_function.h
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2017-05-18 12:51:29 +0200
committerGitHub <noreply@github.com>2017-05-18 12:51:29 +0200
commitdcc44f05b76d6c92138e55e6c69868ee6194c548 (patch)
treed3a606d78cd97716356d743cb6878dc536a7abf2 /modules/gdscript/gd_function.h
parent787dad5ac4341a90ecf135884d8ca71bdbd5d252 (diff)
parentb69d4ebff40c4b8fc55db00ad84514aff48f0c5d (diff)
downloadredot-engine-dcc44f05b76d6c92138e55e6c69868ee6194c548.tar.gz
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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gd_function.h b/modules/gdscript/gd_function.h
index f0bf33147b..6d20b19777 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();