当前位置: 首页>>代码示例>>C#>>正文


C# IChunk.GetSkyLight方法代码示例

本文整理汇总了C#中IChunk.GetSkyLight方法的典型用法代码示例。如果您正苦于以下问题:C# IChunk.GetSkyLight方法的具体用法?C# IChunk.GetSkyLight怎么用?C# IChunk.GetSkyLight使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在IChunk的用法示例。


在下文中一共展示了IChunk.GetSkyLight方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: GetLight

        /// <summary>
        /// 
        /// </summary>
        /// <param name="chunk"></param>
        /// <param name="coords"></param>
        /// <returns></returns>
        protected static int GetLight(IChunk chunk, Coordinates3D coords)
        {
            // Handle icon renderer.
            if (chunk == null)
                return 15;

            // Handle top (and bottom) of the world.
            if (coords.Y < 0)
                return 0;
            if (coords.Y >= Chunk.Height)
                return 15;

            // Handle coordinates outside the chunk.
            if ((coords.X < 0) || (coords.X >= Chunk.Width) ||
                (coords.Z < 0) || (coords.Z >= Chunk.Depth))
            {
                // TODO: Handle chunk boundaries properly.
                return 0;
            }

            return Math.Min(chunk.GetBlockLight(coords) + chunk.GetSkyLight(coords), 15);
        }
开发者ID:ricucremop,项目名称:TrueCraft,代码行数:28,代码来源:BlockRenderer.cs

示例2: GetBlockDataFromChunk

 private BlockDescriptor GetBlockDataFromChunk(Coordinates3D adjustedCoordinates, IChunk chunk, Coordinates3D coordinates)
 {
     return new BlockDescriptor
     {
         ID = chunk.GetBlockID(adjustedCoordinates),
         Metadata = chunk.GetMetadata(adjustedCoordinates),
         BlockLight = chunk.GetBlockLight(adjustedCoordinates),
         SkyLight = chunk.GetSkyLight(adjustedCoordinates),
         Coordinates = coordinates
     };
 }
开发者ID:Luigifan,项目名称:TrueCraft,代码行数:11,代码来源:World.cs


注:本文中的IChunk.GetSkyLight方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。