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 upCreateDefaultSubobject must be called within ctor #264
Comments
This comment has been minimized.
This comment has been minimized.
I am looking at the same code and running into the same error. To me it looks like the code that was calling the ctor in Javascript got moved to |
This comment has been minimized.
This comment has been minimized.
If I restore the code in JavascriptContext_private.cpp and comment out the call of the ctor() in JavascriptGeneratedClass.cpp all of my code that was working in 4.21 is now working in 4.23. If I move all my CreateDefaultSubobject calls to prector() I get all kinds of fun invalid memory access crashes. I think we have a bug on our hands, or a new pattern for calling CreateDefaultSubobject, that I do not see documented anywhere. |
This comment has been minimized.
This comment has been minimized.
Looks like this code was changed 6 months ago in a big merge from commit 44dfabd |
This comment has been minimized.
This comment has been minimized.
There are no examples in the repository that actually use https://github.com/ncsoft/Unreal.js/wiki/Creating-a-component |
This comment has been minimized.
This comment has been minimized.
I tried |
This comment has been minimized.
This comment has been minimized.
I can submit a PR but without any kind of tests I am not sure if it was intended to break this functionality in an attempt to enable something else. |
Hi,
I am new to the Unreal engine and Unreal.js. After copying the first person example on the wiki, I got this error:
CreateDefaultSubobject must be called within ctor
This was caused by:
let tempCamera = CameraComponent.CreateDefaultSubobject("FP_Camera")
It is inside the ctor function.
Thanks for any help,
Alex