Beispiel #1
0
 /**
  * Posts (sets a boolean to true) a load call into the drawing function We need to post it because
  * we don't have an OpenGL context in this call and need it to properly perform this function
  * Posting it allows us to have runtime flexibility. Pass null to have it load the default
  * (question_Texture)
  *
  * @param load
  */
 public void LoadGuessTexture(GuessModel load) {
   System.out.println(
       "GuessModel name: " + load.getAnimalName() + " Path: " + load.getpathToTexture());
   LoadTexturePosted = true;
   LoadGuessModelPosted = load;
 }