상속: MonoBehaviour
예제 #1
0
        ///////////////////////////////////////////////////////////////////////
        // Fire The Event To The Application (Change all but the view!)
        ///////////////////////////////////////////////////////////////////////
        internal void DingEvent()
        {
            UISupport item = UISupport.DataToolBar | UISupport.ApplicationToolBar | UISupport.ExperimentSetting | UISupport.Menu;

            ChangeExperimentSetting();
            RequestUIRefresh(item);
        }
예제 #2
0
 // Create With Settings
 public Component(string title, string tip, bool exec, bool?state, bool vis, UISupport type)
 {
     title_      = title;
     toolTip_    = tip;
     executable_ = exec;
     state_      = state;
     visiblity_  = vis;
     type_       = type;
 }