diff options
author | Juan Linietsky <reduzio@gmail.com> | 2017-07-22 16:57:56 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2017-07-22 16:57:56 -0300 |
commit | 3b2dfae5af9759da31516de25fcae12001092bb0 (patch) | |
tree | c4a5784211be0a44844387c8d385d9b76714b462 /core/object.cpp | |
parent | 0ad1a8f3d00f1927765f7ad687a470f96373729a (diff) |
function to add script and instance at once, as needed by neikeq
Diffstat (limited to 'core/object.cpp')
-rw-r--r-- | core/object.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/core/object.cpp b/core/object.cpp index 000cefcac7..316c624268 100644 --- a/core/object.cpp +++ b/core/object.cpp @@ -993,6 +993,17 @@ void Object::cancel_delete() { _predelete_ok = true; } +void Object::set_script_and_instance(const RefPtr &p_script, ScriptInstance *p_instance) { + + //this function is not meant to be used in any of these ways + ERR_FAIL_COND(p_script.is_null()); + ERR_FAIL_COND(!p_instance); + ERR_FAIL_COND(script_instance != NULL || !script.is_null()); + + script = p_script; + script_instance = p_instance; +} + void Object::set_script(const RefPtr &p_script) { if (script == p_script) |