home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2006 April / Gamestar_83_2006-04_dvd.iso / Dema / lotrbfme2_demo.exe / INI.big / data_ini_weather.ini < prev    next >
Text File  |  2006-01-31  |  3KB  |  77 lines

  1. ;//////////////////////////////////////////////////////////////////////////////
  2. ;FILE: Weather.ini (System)
  3. ;//////////////////////////////////////////////////////////////////////////////
  4.  
  5. Weather
  6.   SnowEnabled = yes               ; enable/disable snow on the map.
  7.   IsSnowing = no                 ; is it snowing today?
  8.  
  9.   SnowTexture = EXRainDrop.tga    ; texture used for each snow particle.
  10.   
  11.   SnowBoxHeight = 300             ; height from which snow falls
  12.   SnowSpacing = 30                ; snow spacing -- less means more
  13.   NumberTiles = 4
  14.  
  15.   SnowAmplitude = 0              ; amount of side-to-side movement. 
  16.   SnowFrequencyScaleX = 0         ; speed of side-to-side wave movement.
  17.   SnowFrequencyScaleY = 0         ; speed of side-to-side wave movement. 
  18.  
  19.   SnowSpeed = 50.0               ; speed at which snow falls
  20. ;  SnowXYSpeed = X:0.0 Y:0.0          ; xy speed of snow
  21.  
  22.   SnowPointSize = 5               ; scale the size of snow particles.
  23.   SnowMinPointSize = 40           ; min point size
  24.   SnowMaxPointSize = 80           ; max point size
  25.  
  26.   ; Some video cards can't do hardware accelerated particles. Set this
  27.   ; setting to "no" in order see what emulation will look like. Use the
  28.   ; SnowQuadSize setting to make it look similar to PointSprite version.;;;
  29.  
  30.   SnowPointSprites = no           ; set to "no" for point-sprite emulation.
  31.   SnowQuadSize = 10               ; scale the size of snow particles when using point-sprite emulation.
  32.  
  33.   ; Lightning stuff
  34.   LightningEnabled = no           ; enable/disable lightning
  35.   LightningFactor = 0.5 1.0       ; flash amount (0, 1) -- make drops brighter by this much
  36.   LightningDuration = 50          ; how long the lightning lasts
  37.   LightningChance = 0.05          ; chance of lightning (0, 1)
  38.  
  39.   ; Spell stuff
  40.   SpellEnabled = yes              ; enable/disable spell
  41.   SpellDuration = 500             ; duration of spell
  42.  
  43.   ; Ramp stuff
  44.   RampControl = X:0.2 Y:0.8       ; ramp fade in and out points (0, 1) relative to spell duration
  45.   RampSpeed = X:150.0 Y:250.0      ; ramp min and max speed
  46.   RampSpacing = X:30.0 Y:20.0     ; ramp min and max rain spacing ; less means more rain
  47.  
  48.   ; Cloud control
  49.   CloudTextureSize = X:660.0 Y:660.0        ; size in world units that one repetition of the cloud texture spans
  50.   CloudOffsetPerSecond = X:-0.012 Y:-0.018    ; offset in texture units that the cloud texture moves per second
  51.  
  52. End
  53.  
  54. ; Data about how to show various types of weather
  55. WeatherData RAINY
  56.     WeatherSound = RainStereoLoop
  57.     HasLightning = Yes
  58. End
  59.  
  60. WeatherData CLOUDYRAINY
  61.     WeatherSound = RainStereoLoop
  62.     HasLightning = Yes
  63. End
  64.  
  65. WeatherData SUNNY
  66.     HasLightning = No
  67. End
  68.  
  69. WeatherData CLOUDY
  70.     HasLightning = No ; Lightning for rain only. Bug #9644
  71. End
  72.  
  73. ; ??? Nothing specified????
  74. WeatherData NONE
  75. End
  76.  
  77.