1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
using UnityEngine.Networking; namespace I2.Loc; public class TranslationJob_WWW : TranslationJob { public UnityWebRequest www; public override void Dispose() { if (www != null) { www.Dispose(); } www = null; } }