INTERNAL_CALL_GetAssetBundleHash() приватный Метод

private INTERNAL_CALL_GetAssetBundleHash ( AssetBundleManifest self, string assetBundleName, Hash128 &value ) : void
self AssetBundleManifest
assetBundleName string
value Hash128
Результат void
Пример #1
0
        /// <summary>
        ///   <para>Get the hash for the given AssetBundle.</para>
        /// </summary>
        /// <param name="assetBundleName">Name of the asset bundle.</param>
        /// <returns>
        ///   <para>The 128-bit hash for the asset bundle.</para>
        /// </returns>
        public Hash128 GetAssetBundleHash(string assetBundleName)
        {
            Hash128 hash128;

            AssetBundleManifest.INTERNAL_CALL_GetAssetBundleHash(this, assetBundleName, out hash128);
            return(hash128);
        }
        public Hash128 GetAssetBundleHash(string assetBundleName)
        {
            Hash128 result;

            AssetBundleManifest.INTERNAL_CALL_GetAssetBundleHash(this, assetBundleName, out result);
            return(result);
        }