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: OnEndPlay delegate not called on end of PIE #230
Comments
This comment has been minimized.
This comment has been minimized.
Try to attach JavascriptComponent to Your gameState. |
This comment has been minimized.
This comment has been minimized.
Same result. |
This comment has been minimized.
This comment has been minimized.
It's hard to understand exactly what you want, but in this situation it's better to use Destroyed as a callback than Actor's OnEndPlay. |
This comment has been minimized.
This comment has been minimized.
I've added a hook to when the game ends. (my particular use case is for a flush of delayed writes) I'm not so much interested in an individual actor's onEndPlay - in the unreal JS, I'm using the Root.OnEndPlay delegate to add a 'before the game ends, do XYZ'. Effectively equivalant to process.on('exit', callback) I've added to our polyfill/timers.js process object to use it this way, creating an array of individual callbacks to be executed by the OnEndPlay callback. As described in this bug, the callbacks were never being executed. |
STR:
add JavascriptComponent to a game mode used for the level
in javascript: Root.OnEndPlay.Add(()=> { ... (log message or somesuch) });
play in editor
note that the function is not called.
Putting a breakpoint in and stepping into UJavascriptComponent::Deactivate shows that the delegate has been destroyed.
It is possible/likely for the components JavascriptContext to be destroyed before the component is destroyed.
Ie: note that a breakpoint in UJavascriptIsolate::BeginDestroy() is hit before the UJavascriptComponent::Deactivate is hit.
A fix for PIE is to call the OnEndPlay via the EndPlayMap delegate (which is called before any objects are destructed in PIE)
ie:
I am not certain if this reproduces in standalone..