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


C# BlockPos.ContainingChunkCoordinates方法代码示例

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


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

示例1: GetChunk

    /// <summary>
    /// Get's the chunk object at pos
    /// </summary>
    /// <param name="pos">Position of the chunk or of a block within the chunk</param>
    /// <returns>chunk that contains the given block position or null if there is none</returns>
    public Chunk GetChunk(BlockPos pos)
    {
        //Get the coordinates of the chunk containing this block
        pos = pos.ContainingChunkCoordinates();

        Chunk containerChunk = null;
        chunks.TryGetValue(pos, out containerChunk);

        return containerChunk;
    }
开发者ID:li5414,项目名称:Voxelmetric,代码行数:15,代码来源:World.cs

示例2: UpdateAdjacentChunks

 /// <summary>
 /// Updates any chunks neighboring a block position
 /// </summary>
 /// <param name="pos">position of change</param>
 public void UpdateAdjacentChunks(BlockPos pos)
 {
     BlockPos localPos = pos - pos.ContainingChunkCoordinates();
     //Checks to see if the block position is on the border of the chunk 
     //and if so update the chunk it's touching
     UpdateIfEqual(localPos.x, 0, pos.Add(-1, 0, 0));
     UpdateIfEqual(localPos.x, Config.Env.ChunkSize - 1, pos.Add(1, 0, 0));
     UpdateIfEqual(localPos.y, 0, pos.Add(0, -1, 0));
     UpdateIfEqual(localPos.y, Config.Env.ChunkSize - 1, pos.Add(0, 1, 0));
     UpdateIfEqual(localPos.z, 0, pos.Add(0, 0, -1));
     UpdateIfEqual(localPos.z, Config.Env.ChunkSize - 1, pos.Add(0, 0, 1));
 }
开发者ID:li5414,项目名称:Voxelmetric,代码行数:16,代码来源:World.cs

示例3: SaveCompleteForChunk

 public void SaveCompleteForChunk(BlockPos pos)
 {
     chunksToSave.Remove(pos.ContainingChunkCoordinates());
     progress = Mathf.FloorToInt(((totalChunksToSave - chunksToSave.Count) / ((float)totalChunksToSave)) * 100);
 }
开发者ID:li5414,项目名称:Voxelmetric,代码行数:5,代码来源:SaveProgress.cs


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