Menu

R63 Released

We are pleased to announce R63 and updated AGEDemo are now in the Files area!

This release contains the ShaderBuilder, some fixes in GameplayFragment, and lots of new things for you to implement in GameHost.

If you have working code from previous release, you should look at the new AGEDemo files; there are some new things you must do now to integrate correctly with the updated GameHost interface.

We also want to give everyone a reminder that you should not in general re-execute everything in the gameStarting method, when reload is true!

@Override
protected void startLoading(boolean isreload) {
    Log.d(name, "startLoading " + isreload);
    if(isreload) return;
    host.enableStartGame(false);
    host.enableLoading(true);
...

This gets re-called with true by GameCycle as a "courtesy" so you can tell that there was a GL context change. However, the ContextResourceLoader handles GL resource reloads for you, so there is no need to do anything else, especially re-creating everything!

We bring this up because it happened to us! The game was loading and playing "very slowly"....

Posted by g-dollar 2015-01-12

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.