Esempio n. 1
0
    public void SetEllipse(float range, float angle)
    {
        BarViewObj.SetActive(false);
        CylinderObj.SetActive(true);

        CylinderObj.transform.localScale = new Vector3(range, 0, range);
    }
Esempio n. 2
0
    public void SetBarView(float width, float length)
    {
        BarViewObj.SetActive(true);
        CylinderObj.SetActive(false);

        BarViewObj.transform.localScale    = new Vector3(width, length, 0);
        BarViewObj.transform.localPosition = new Vector3(0, 0, (length / 2));
    }