Quantcast
Channel: openFrameworks - Latest posts
Viewing all articles
Browse latest Browse all 40524

Force a draw - outside of the ::draw() method?

$
0
0

One way to do it is to add a "loading screen shown" variable that is set to false when the loading action is initiated (e.g. by clicking the mouse in the example).

void ofApp::draw(){
  if (state == 0) {
    myfont.drawString("State 0 - click anywhere", 100,100);
  }

  if ((state == 0) && (doLoad)) {
    if (loadingScreenShown) {
      LoadAndInitHeavyHog();
    } else {
      myfont.drawString(" --- LOADING --- ", 100,100);
      loadingScreenShown = true;
    }
  }

  if (state == 1) {
    myfont.drawString("State 1 - loaded...", 100,100);
  }
}

I think this should work, but it does require another variable.


Viewing all articles
Browse latest Browse all 40524

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>