Guest User

Untitled

a guest
Jan 18th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.93 KB | None | 0 0
  1. unbindall
  2.  
  3. play_distance "2"
  4. gameui_xbox "1"
  5.  
  6. snd_digital_surround "1"
  7. save_history_count "1"
  8.  
  9. host_thread_mode "1" // We want to run the host on a seperate thread for Xbox
  10. sv_alternateticks "1"
  11.  
  12. // values from game_options.txt
  13. cl_crosshairscale "0"
  14. cl_crosshaircolor "1"
  15. cl_righthand "1"
  16. cl_autowepswitch "1"
  17. cl_logofile "spray_gamerpic"
  18.  
  19. option_duck_method "0"
  20. option_speed_method "0"
  21.  
  22. cl_rumblescale "1.0"
  23.  
  24. // Tune bloomscale for all of Counter-Strike
  25. //$TODO: We should take a pass to tune this for our HDR maps to look as good as possible on Xbox. The .6 setting comes from Portal.
  26. mat_bloom_scalefactor_scalar "0.2"
  27.  
  28. // $TODO: These should be tuned. We don't want tv mode enabled on 360.
  29. mat_monitorgamma_tv_range_min "0"
  30. mat_monitorgamma_tv_range_max "255"
  31. mat_monitorgamma "1.8"
  32. mat_monitorgamma_tv_enabled "0"
  33. mat_monitorgamma_tv_exp "2.5"
  34.  
  35. // Make it so models are not so dark when in the shadows.
  36. r_modelAmbientMin "0.0"
  37.  
  38. //=============================================================================
  39. // HPE_BEGIN:
  40. // [Forrest] Default sound volume to halfway. It seemed way too loud on Xbox at full blast.
  41. // Halfway feels comfortable to me. I set my headphones volume so that the dashboard blips as the selection
  42. // felt normal to me. At halfway, gunshots felt satisfying but not overwhelming and footsteps were still
  43. // clearly audible.
  44. // $TODO: We should probably calibrate our default audio level more scientifically than this.
  45. // $TODO: We'll eventually want the options menu to save the user's volume level, in which case we will
  46. // probably need to remove the setting here.
  47. //=============================================================================
  48. volume "1.0"
  49. //=============================================================================
  50. // HPE_END
  51. //=============================================================================
  52.  
  53. exec controller.360.cfg
Add Comment
Please, Sign In to add comment