-
Notifications
You must be signed in to change notification settings - Fork 349
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
runtime eval/compile #46
Comments
So basically you should have a method to watch a file change outside editor to monitor file change. If you have one, and then just call :) |
Any advice on getting a method to watch a file? I'm using grunt. Currently I have a ghetto:
|
I've usually used windows specific functions to watch for folder changes, but ue4 has platform agnostic file functions https://wiki.unrealengine.com/File_Management,_Create_Folders,_Delete_Files,_and_More which should be more appropriate. Exposing any of those c++ methods, e.g. file timestamp, to unreal.js and running a polling thread or receiving a system callback should get you what you're looking for. Maybe nako has exposed some of these utilities in ujs already? |
So tried this out the other day, really awesome work!
Live reload works in the editor, but if you run standalone/packaged it won't which makes sense.
My question is if there is a function or method you can call to reload and re-evaluate a javascript file in standalone/packaged games?
The text was updated successfully, but these errors were encountered: