OpenSim.Region.Framework.Scenes.ScenePresence.DumpKnownRegions C# (CSharp) Méthode

DumpKnownRegions() public méthode

public DumpKnownRegions ( ) : void
Résultat void
        public void DumpKnownRegions()
        {
            m_log.Info("================ KnownRegions "+Scene.RegionInfo.RegionName+" ================");
            foreach (KeyValuePair<ulong, string> kvp in KnownRegions)
            {
                uint x, y;
                Utils.LongToUInts(kvp.Key, out x, out y);
                x = x / Constants.RegionSize;
                y = y / Constants.RegionSize;
                m_log.Info(" >> "+x+", "+y+": "+kvp.Value);
            }
        }
ScenePresence