Exemplo n.º 1
0
        public static void NotifyOtherClassesOfBoundsChange(bool silent = false)
        {
            // No log messages if commanded, if just starting up, or just shutting down.
            bool isSilent = silent || !isInitialized || isShuttingDown;

            WorldVectorCompression.EstablishMinBitsPerAxis(combinedWorldBounds, isSilent);
        }
Exemplo n.º 2
0
 public static void UpdateWorldBounds(bool mute = false)
 {
     // No log messages if commanded, if just starting up, or just shutting down.
     WorldVectorCompression.SetWorldRanges(CombinedWorldBounds, muteMessages || mute);
 }