コード例 #1
0
ファイル: NSTMapBounds.cs プロジェクト: vert0r/NetDemo2
        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);
        }
コード例 #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);
 }