Пример #1
0
        // Token: 0x06000DF5 RID: 3573 RVA: 0x00061C90 File Offset: 0x00060090
        public static bool getSplatmapLayer(LandscapeCoord tileCoord, SplatmapCoord splatmapCoord, out int layer)
        {
            LandscapeTile tile = Landscape.getTile(tileCoord);

            if (tile != null)
            {
                layer = Landscape.getSplatmapHighestWeightLayerIndex(splatmapCoord, tile.sourceSplatmap, -1);
                return(true);
            }
            layer = -1;
            return(false);
        }