示例#1
0
 public void ReleaseObject()
 {
     this.obj.Released();
     this.obj    = null;
     this.onGrab = false;
 }
示例#2
0
 public void GrabObject(ControllInterface obj)
 {
     this.obj    = obj;
     this.onGrab = true;
     obj.Grabbed();
 }