Climate Bindings
TFC uses climate models to determine the the temperature, rainfall, and several other things, these can be created and added to the world to be used
These methods provide a convenient way of accessing the information about a world’s climate
These are available under the TFC.climate
field
Method Signatures
TFC.climate.getModel(o: any)
TFC.climate.getName(model: ClimateModel)
TFC.climate.getCurrentTemperature(level: Level, pos: BlockPos)
TFC.climate.getTemperature(level: Level, pos: BlockPos, calendarTicks: number)
TFC.climate.getAverageTemperature(level: Level, pos: BlockPos)
TFC.climate.getAverageRainfall(level: Level, pos: BlockPos)
TFC.climate.getFogginess(level: Level, pos: BlockPos)
TFC.climate.getWaterFogginess(level: Level, pos: BlockPos)
TFC.climate.getWindVector(level: Level, pos: BlockPos)
TFC.climate.isWarmEnoughToRain(level: Level, pos: BlockPos)
.getModel(o: any)
: Attempts to get a climate model from the provided object, will return null if it cannot do so.getName(model: ClimateModel)
: Returns the name of the provided climate model.getCurrentTemperature(level: Level, pos: BlockPos)
: Returns the current temperature at the given level and position.getTemperature(level: Level, pos: BlockPos, calendarTicks: number)
: Returns the temperature at the given level, position, and calendar tick.getAverageTemperature(level: Level, pos: BlockPos)
: Returns the yearly average temperature at the given level and position.getAverageRainfall(level: Level, pos: BlockPos)
: Returns the yearly average temperature at the given level and position.getFogginess(level: Level, pos: BlockPos)
: Returns the current air fog value at the given level and position.getWaterFogginess(level: Level, pos: BlockPos)
: Returns the current water fog value at the given level and position.getWindVector(level: Level, pos: BlockPos)
: Returns the currentVec2
wend vector at the given level and position.isWarmEnoughToRain(level: Level, pos: BlockPos)
: Returnstrue
if it is currently warm enough to rain at the given level and position
Example
PlayerEvents.tick(event => {
if (event.level.gameTime % 20 < 1) {
if (TFC.climate.getCurrentTemperature(event.level, event.player.blockPosition()) > 40) {
event.player.data['tfc:player_data'].addThirst(3)
}
}
})