From 1b2bd928cc9b08b22e295df0066819aec881c11b Mon Sep 17 00:00:00 2001 From: Quantum Date: Thu, 21 Nov 2013 16:45:38 -0500 Subject: [PATCH] Objects no longer flicker when being far (10x improvement). Close objects are not displayed very well. --- punyverse/game.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/punyverse/game.py b/punyverse/game.py index 28bdef9..dd51fe1 100644 --- a/punyverse/game.py +++ b/punyverse/game.py @@ -224,7 +224,7 @@ class Applet(pyglet.window.Window): glMatrixMode(GL_PROJECTION) glLoadIdentity() # A field of view of 45 - gluPerspective(45.0, width / float(height), 0.1, 50000000.0) + gluPerspective(45.0, width / float(height), 1, 50000000.0) glMatrixMode(GL_MODELVIEW) def on_mouse_scroll(self, x, y, scroll_x, scroll_y):