Struct BundleDetails
Struct containing detailed information about a built asset bundle
Syntax
[Serializable]
public struct BundleDetails : IEquatable<BundleDetails>
Properties
Crc
Cyclic redundancy check of the content contained inside of the asset bundle.
This value will not change between identical asset bundles with different compression options.
Declaration
public uint Crc { get; set; }
Property Value
| Type |
Description |
| System.UInt32 |
|
Dependencies
The array of all dependent asset bundles for this asset bundle.
Declaration
public string[] Dependencies { get; set; }
Property Value
| Type |
Description |
| System.String[] |
|
FileName
Specific file name on disk of the asset bundle.
Declaration
public string FileName { get; set; }
Property Value
| Type |
Description |
| System.String |
|
Hash
The hash version of the content contained inside of the asset bundle.
This value will not change between identical asset bundles with different compression options.
Declaration
public Hash128 Hash { get; set; }
Property Value
Methods
Equals(Object)
Declaration
public override bool Equals(object obj)
Parameters
| Type |
Name |
Description |
| System.Object |
obj |
|
Returns
| Type |
Description |
| System.Boolean |
|
Overrides
System.ValueType.Equals(System.Object)
Equals(BundleDetails)
Declaration
public bool Equals(BundleDetails other)
Parameters
Returns
| Type |
Description |
| System.Boolean |
|
GetHashCode()
Declaration
public override int GetHashCode()
Returns
| Type |
Description |
| System.Int32 |
|
Overrides
System.ValueType.GetHashCode()
Operators
Equality(BundleDetails, BundleDetails)
Declaration
public static bool operator ==(BundleDetails a, BundleDetails b)
Parameters
Returns
| Type |
Description |
| System.Boolean |
|
Inequality(BundleDetails, BundleDetails)
Declaration
public static bool operator !=(BundleDetails a, BundleDetails b)
Parameters
Returns
| Type |
Description |
| System.Boolean |
|