示例#1
0
 void Update()
 {
     sInstance = this;
     if (select != null)
     {
         Repaint();
     }
 }
示例#2
0
    public static void initwin()
    {
        BTreeWin win = (BTreeWin)BTreeWin.GetWindow(typeof(BTreeWin));

        sInstance = win;
    }
 void Update()
 {
     sInstance = this;
     if(select != null)
     {
         Repaint();
     }
 }
 static void initwin()
 {
     BTreeWin win = (BTreeWin)BTreeWin.GetWindow(typeof(BTreeWin));
     sInstance = win;
 }
示例#5
0
 static void initWin()
 {
     Instance          = (BTreeWin)GetWindow <BTreeWin>();
     Instance.position = new Rect(300, 200, 800, 400);
 }