Ludeon Forums

RimWorld => Mods => Help => Topic started by: ItchyFlea on January 04, 2015, 06:50:17 AM

Title: Is there a way to set biome temperatures?
Post by: ItchyFlea on January 04, 2015, 06:50:17 AM
Basically I want to have control over the temperatures biomes have, rather than allowing the game to set them itself. Is there any way I can do this?
Title: Re: Is there a way to set biome temperatures?
Post by: unifex on January 04, 2015, 06:35:01 PM
The little I've looked at it, I think all you can tweak are the weather definitions under WeatherDefs:

    ...
    <temperatureRange>
      <min>0</min>
      <max>999</max>
    </temperatureRange>

Afaict any behaviour on top of that is hardcoded.
Title: Re: Is there a way to set biome temperatures?
Post by: Pathing on January 05, 2015, 08:19:34 AM
Quote from: unifex on January 04, 2015, 06:35:01 PM
The little I've looked at it, I think all you can tweak are the weather definitions under WeatherDefs:

    ...
    <temperatureRange>
      <min>0</min>
      <max>999</max>
    </temperatureRange>

Afaict any behaviour on top of that is hardcoded.
That's conditional temperature requirement of each weather event. For example, from the quote, this kind of weather will occur when outside temperature is between 0 and 999.
Title: Re: Is there a way to set biome temperatures?
Post by: unifex on January 05, 2015, 04:11:21 PM
Ah OK thanks.