コード例 #1
0
ファイル: OrientedBlock.cs プロジェクト: Hengle/Maze-1
    public void CycleBlockVariation(int direction)
    {
        BlockSet bs = GetCurrentBlockSet();

        if (bs != null)
        {
            bs.CycleIndex(direction);

            SetBlockOrientation((BlockOrientation)orientation, true);
        }
    }