示例#1
0
文件: BoardManager.cs 项目: kijun/art
    // SECTOR HELPERS
    Sector CurrentSector()
    {
        var     ssize = sectorSize;
        Vector2 pos   = player.position;
        int     x     = Mathf.FloorToInt((pos.x - ssize / 2.0f) / ssize);
        int     y     = Mathf.FloorToInt((pos.y - ssize / 2.0f) / ssize);

        //Debug.Log("For pos: " + pos + "Current Sector (" + x + ", " + y + ")");
        return(sys.GetSector(x, y));
    }