void Start()
 {
     for (int i = 0; i < transform.childCount; i++)
     {
         ReachpointList.Add(transform.GetChild(i));
     }
 }
Exemplo n.º 2
0
        public bool StartTLS(string strServer)
        {
            /// Negotiate TLS, don't return until it's done
            /// (We would use SslStream in normal .NET, but that's not available here)
            /// TLS is implement as a message filter
            TLStrans = new xmedianet.socketserver.TLS.TLSClientTransform(this);
            TransformList.Add(TLStrans);
            TLStrans.Activate();

            return(false);
        }
Exemplo n.º 3
0
 private void OnEnable()
 {
     ListAsset.Add(transform);
 }