示例#1
0
 public void OnApplicationQuit()
 {
     if (pub != null)
     {
         pub.destory();
     }
     pub = null;
 }
示例#2
0
 public void OnDestroy()
 {
     if (pub != null)
     {
         pub.destory();
     }
     pub = null;
 }
示例#3
0
 // Use this for initialization
 void Start()
 {
     accx = 0;
     accy = 0;
     accz = 0;
     pub  = new DRPublisher("pub1", "127.0.0.1", 10000);
     pub.useThread(60, publishMethod);
 }