public void Dispose()
 {
     callBack          = null;
     nextValue         = null;
     this.scenceName   = null;
     this.bundleName   = null;
     this.resourceName = null;
 }
 public NativeResourceCallBackNode(bool tmpSingle, string tmpSenceName, string tmpBundle, string tmpRes, ushort tmpBackId, NativeResourceCallBack tmpCallBack, NativeResourceCallBackNode tmpNode)
 {
     this.isSingle     = tmpSingle;
     this.scenceName   = tmpSenceName;
     this.bundleName   = tmpBundle;
     this.resourceName = tmpRes;
     this.backMsgId    = tmpBackId;
     this.callBack     = tmpCallBack;
     this.nextValue    = tmpNode;
 }