diff settings.py @ 152:76041ed90a5d

Updated settings to use the MouseSensitivity, MouseAcceleration, GLUseNPOT and GLUseFramebuffer options.
author KarstenBock@gmx.net
date Wed, 26 Oct 2011 13:01:49 +0200
parents bf1dd9c24a7e
children
line wrap: on
line diff
--- a/settings.py	Fri Oct 21 13:39:40 2011 +0200
+++ b/settings.py	Wed Oct 26 13:01:49 2011 +0200
@@ -340,16 +340,18 @@
 # Video driver to use. (?)
 VideoDriver = ""
 
-# Backend to use for graphics (OpenGL|SDL)
+# Backend to use for graphics (OpenGL|OpenGLe|SDL)
 RenderBackend = OpenGL 
 
 # Run the game in fullscreen mode or not. (True|False)
 FullScreen = False
 
-# Screen Resolution's width. Not used if FullScreen is set to False (800|1024|etc)
+# Screen Resolution's width. Not used if FullScreen is set to False 
+# (800|1024|etc)
 ScreenWidth = 1024
 
-# Screen Resolution's height. Not used if FullScreen is set to False (600|768|etc)
+# Screen Resolution's height. Not used if FullScreen is set to False 
+# (600|768|etc)
 ScreenHeight = 768
 
 # Screen DPI? (?)
@@ -358,6 +360,18 @@
 # ? (?)
 SDLRemoveFakeAlpha = 1
 
+# Use Framebuffer Objects (True|False)
+GLUseFramebuffer = True
+
+# Use NPOT textures (True|False)
+GLUseNPOT = True
+
+# The Sensitivity of the mouse. (-0.99 to 10.0)
+MouseSensitivity = 0.0
+
+# Sets whether the mouse should be accelerated. (True|False)
+MouseAcceleration = False
+
 # Subdirectory to load icons from (path)
 IconsPath = icons