World.weather

Gets the world's weather manager.

class World
final pure nothrow @property @safe @nogc
weather
()

Examples

log("is it raining? ", world.weather.raining);
log("do weather cycle? ", world.weather.cycle);
world.weather.start();
world.weather.clear();
world.weather.start(24000);
assert(world.weather.raining);

Meta