WorldSleepMode Enumeration

public enum WorldSleepMode

Specifies under what conditions the World will be put into sleep mode while it is up and running.

Fields

Name Value Description
NoUsers 0 The World will be put to sleep as soon as no users are registered with it, even if World Groupings still have World Cells. This is the default.
NoWorldCells 1 The World will be put to sleep only when all World Groupings have no World Cells. If at least one World Grouping has one World Cell, it will not be put to sleep. The number of registered users does not matter.
NoWorldCellsAndUsers 2 The World will be put to sleep only when all World Groupings have no World Cells and when there are no users registered with the World. A single user or World Cell will keep it from going to sleep.
NeverSleep 3 The World will never be put to sleep (after being awoken for the first time). Not recommended but its an option if you like.