Example #1
0
    public void SelectThisParticularModel(float rotation, int index = 0)
    {
        InitControllers();
        rotationController.SelectThisModel(rotation, index);



        if (GetUnselectedIsHidden())
        {
            print("Executing if");
            rotationController.ShowAllShapes(true);
            rotationController.HideUnSelectedShapes(true);
        }
        else
        {
            print("Executing else");
            rotationController.ShowAllShapes(true);
        }
    }