Mercurial > parpg-core
comparison src/parpg/settings.py @ 184:9d9c4ccc081e
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 | aa3d837024a3 |
children |
comparison
equal
deleted
inserted
replaced
183:5d52f08633c0 | 184:9d9c4ccc081e |
---|---|
338 WindowIcon = window_icon.png | 338 WindowIcon = window_icon.png |
339 | 339 |
340 # Video driver to use. (?) | 340 # Video driver to use. (?) |
341 VideoDriver = "" | 341 VideoDriver = "" |
342 | 342 |
343 # Backend to use for graphics (OpenGL|SDL) | 343 # Backend to use for graphics (OpenGL|OpenGLe|SDL) |
344 RenderBackend = OpenGL | 344 RenderBackend = OpenGL |
345 | 345 |
346 # Run the game in fullscreen mode or not. (True|False) | 346 # Run the game in fullscreen mode or not. (True|False) |
347 FullScreen = False | 347 FullScreen = False |
348 | 348 |
349 # Screen Resolution's width. Not used if FullScreen is set to False (800|1024|etc) | 349 # Screen Resolution's width. Not used if FullScreen is set to False |
350 # (800|1024|etc) | |
350 ScreenWidth = 1024 | 351 ScreenWidth = 1024 |
351 | 352 |
352 # Screen Resolution's height. Not used if FullScreen is set to False (600|768|etc) | 353 # Screen Resolution's height. Not used if FullScreen is set to False |
354 # (600|768|etc) | |
353 ScreenHeight = 768 | 355 ScreenHeight = 768 |
354 | 356 |
355 # Screen DPI? (?) | 357 # Screen DPI? (?) |
356 BitsPerPixel = 0 | 358 BitsPerPixel = 0 |
357 | 359 |
358 # ? (?) | 360 # ? (?) |
359 SDLRemoveFakeAlpha = 1 | 361 SDLRemoveFakeAlpha = 1 |
362 | |
363 # Use Framebuffer Objects (True|False) | |
364 GLUseFramebuffer = True | |
365 | |
366 # Use NPOT textures (True|False) | |
367 GLUseNPOT = True | |
368 | |
369 # The Sensitivity of the mouse. (-0.99 to 10.0) | |
370 MouseSensitivity = 0.0 | |
371 | |
372 # Sets whether the mouse should be accelerated. (True|False) | |
373 MouseAcceleration = False | |
360 | 374 |
361 # Subdirectory to load icons from (path) | 375 # Subdirectory to load icons from (path) |
362 IconsPath = icons | 376 IconsPath = icons |
363 | 377 |
364 # ? ([R, G, B]) | 378 # ? ([R, G, B]) |