Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign upbug: Function override with array params not passed to JS #229
Comments
This comment has been minimized.
This comment has been minimized.
The dynamic array in unreal.js has a limit. Please read https://github.com/ncsoft/Unreal.js/wiki/Dynamic-array:-Limitation. |
This comment has been minimized.
This comment has been minimized.
Yes, I was aware of that issue. It doesn't seem relevant to the problem at hand, which is that the array is never being passed to the javascript in the first place, regardless of whether I want to edit it. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
STR:
create a custom blueprint
create a function that takes an array (ie, strings) as a parameter (TestFn)
extends the custom blueprint in JS with an override for TestFn
Call the function via a blueprint with some valid non-zero length array (ie, MakeArray node)
note that the array is empty when the JS executes.
Possible Fix (minimally tested locally)
in JavascriptContext_Private.cpp
UJavascriptGeneratedFunction::Thunk
when iterating properties to copy into NewStack.Locals, params that are CPF_OutParm should also check for CPF_ReferenceParm and if so, also copy it into Locals instead of only the out list.