public static T Value <T>(this LinkTo <T> link) where T : Object
        {
#if USE_ADDRESSABLES
            return(AddrHelper.GetAsset <T>(link));
#else
            return(link.Value);
#endif
        }
Exemplo n.º 2
0
        public static void ReloadLinks()
        {
#if USE_ADDRESSABLES
            AddrHelper.Reload();
#else
            ResourcesAssetHelper.Reload();
#endif
        }