Ejemplo n.º 1
0
    public void Return__Lamp_Layer2()
    {
        LampScrollView.SetActive(true);
        SetTitleBottom("灯光控制");
        LampPanel.SetActive(false);

        mReturnLayer = ReturnLayer.Control_Lamp_Layer1;
    }
Ejemplo n.º 2
0
    public void SetLampPanel(RoomLampInfo itemLamp)
    {
        mReturnLayer = ReturnLayer.Control_Lamp_Layer2;

        LampScrollView.SetActive(false);
        SetTitleBottom(itemLamp.name);
        LampPanel.SetActive(true);
    }
Ejemplo n.º 3
0
 public void Return__Safety_Layer()
 {
     mReturnLayer = ReturnLayer.None;
     MainScrollView.SetActive(true);
     Bottom.SetActive(true);
     TitleBottom.SetActive(false);
     SafetyScrollView.SetActive(false);
     ReturnBtn.gameObject.SetActive(false);
 }
Ejemplo n.º 4
0
    public void Return__Lamp_Layer1()
    {
        ClearLampRoomShow();

        MainScrollView.SetActive(true);
        Bottom.SetActive(true);
        LampScrollView.SetActive(false);
        TitleBottom.SetActive(false);
        ReturnBtn.gameObject.SetActive(false);


        mReturnLayer = ReturnLayer.None;
    }
Ejemplo n.º 5
0
    public void SetRoomLamp()
    {
        mReturnLayer = ReturnLayer.Control_Lamp_Layer1;

        MainScrollView.SetActive(false);
        Bottom.SetActive(false);
        LampScrollView.SetActive(true);
        SetTitleBottom("灯光控制");
        ReturnBtn.gameObject.SetActive(true);


        //更新列表
        ClearLampRoomShow();
        UpdateLampRoomShow();
    }
Ejemplo n.º 6
0
    public void SetSafetyMess()
    {
        mReturnLayer = ReturnLayer.Safety_Layer;

        MainScrollView.SetActive(false);
        Bottom.SetActive(false);
        SafetyScrollView.SetActive(true);
        SetTitleBottom("安防信息");
        ReturnBtn.gameObject.SetActive(true);


        //更新列表
        ClearSafetyMessShow();
        UpdateSafetyMessShow();
    }