Exemplo n.º 1
0
        public static void DownloadFile(LuaTable info, LuaFunction call, float timeoutSec, int retry = 3)
        {
            var www = WWWTO.DownloadFile(new WWWInfo(info), null, call);

            www.TimeoutSec = timeoutSec;
            www.Retry      = retry;
            www.Start();
        }