Skip to content
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

Closed
getnamo opened this issue Mar 15, 2016 · 3 comments
Closed

runtime eval/compile #46

getnamo opened this issue Mar 15, 2016 · 3 comments

Comments

@getnamo
Copy link

getnamo commented Mar 15, 2016

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?

@nakosung
Copy link
Collaborator

devrequire.js requires directory watcher but it is excluded with non-editor release. It does just monitor file-change and call cleanup function what you returned, purge_modules() to invalidate js cache, and gc() to flush, then it require(your-js) to load.

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
purge_modules(); gc(); require('your-js')

:)

@mflux
Copy link

mflux commented Jul 10, 2017

Any advice on getting a method to watch a file? I'm using grunt.

Currently I have a ghetto:

function main() {

  purge_modules(); gc();

  setTimeout( function(){

    //  my game code using require()

  }, 500 );

  //  return a cleaup function
  if( GWorld.IsServer() ) {
    return function(){
      cleanupGameplayActors();
    };
  }
  else{
    return function cleanup(){};
  }
}

@getnamo
Copy link
Author

getnamo commented Jul 10, 2017

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?

bdero pushed a commit to bdero/Unreal.js that referenced this issue Sep 13, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants