コード例 #1
0
ファイル: GameManager.cs プロジェクト: BobThyAsian/Tycoon
    // Start is called before the first frame update
    void Start()
    {
        if (cameraFollow != null)
        {
            cameraFollow.Setup(() => cameraPosition, () => orthoSize, true, false);
        }
        GridBase grid = new GridBase();

        grid.Build(25, 30, 1f, new Vector3(-10, -10));
        //uiText1 = GameObject.Find("GuestBug").GetComponent<Text>();
    }
コード例 #2
0
ファイル: GroundGrid.cs プロジェクト: BobThyAsian/Tycoon
    // Start is called before the first frame update
    void Start()
    {
        GridBase grid = new GridBase();

        grid.Build(25, 30, 1f, new Vector3(-10, -10));
    }