From: Luke H. <lh...@us...> - 2002-11-26 07:05:24
|
Update of /cvsroot/java-game-lib/LWJGL/examples/nehe/lesson06 In directory sc8-pr-cvs1:/tmp/cvs-serv29914/lesson06 Modified Files: Lesson6.java Log Message: now using timers, packages... most packages extend lesson1 or 6-7. lessons 10-17 will be broken for the rest of the night. going to bed... They will be done tomarrow =) Index: Lesson6.java CVS Browser: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/java-game-lib/LWJGL/examples/nehe/lesson06/Lesson6.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/examples/nehe/lesson06/Lesson6.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- Lesson6.java 26 Nov 2002 06:03:44 -0000 1.3 +++ Lesson6.java 26 Nov 2002 07:05:21 -0000 1.4 @@ -90,7 +90,7 @@ } /* Load Bitmaps And Convert To Textures */ - private void loadGLTextures() throws Exception { + protected void loadGLTextures() throws Exception { /* Create Storage Space For The Texture */ Texture[] textureImage = new Texture[1]; @@ -245,7 +245,7 @@ int err = 0; Lesson6 lesson = new Lesson6(); try { - lesson.start(); + lesson.start(640, 480, 16, false); } catch (Exception e) { err = 1; |