World.time

Gets the world's time manager.

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

Examples

log("Time of the day is ", world.time.time);
log("Day is ", world.time.day);
log("Do daylight cycle? ", world.time.cycle);
world.time = 25000;
assert(world.time == 1000);
world.time = Time.noon;

Meta