diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-12-07 15:34:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-07 15:34:33 +0100 |
commit | e20011b0da4af68ecb4b267e46c43e30004494b5 (patch) | |
tree | 5385cc395fc2f50f3a62aec6e16b34cb01f37760 /platform/javascript/js/libs/library_godot_eval.js | |
parent | 44a88244dee7e8996824aa29507e917b22ffccca (diff) | |
parent | dd9503dc1937e1469b2a6f8e145e80acbf2c7cbb (diff) | |
download | redot-engine-e20011b0da4af68ecb4b267e46c43e30004494b5.tar.gz |
Merge pull request #44076 from Faless/js/4.x_gdnative
[HTML5] Optional GDNative Support
Diffstat (limited to 'platform/javascript/js/libs/library_godot_eval.js')
-rw-r--r-- | platform/javascript/js/libs/library_godot_eval.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/platform/javascript/js/libs/library_godot_eval.js b/platform/javascript/js/libs/library_godot_eval.js index 33ff231726..1a2440dd24 100644 --- a/platform/javascript/js/libs/library_godot_eval.js +++ b/platform/javascript/js/libs/library_godot_eval.js @@ -30,6 +30,7 @@ const GodotEval = { godot_js_eval__deps: ['$GodotRuntime'], + godot_js_eval__sig: 'iiiiiii', godot_js_eval: function (p_js, p_use_global_ctx, p_union_ptr, p_byte_arr, p_byte_arr_write, p_callback) { const js_code = GodotRuntime.parseString(p_js); let eval_ret = null; |