Added
Breaking Changes
-
Renamed
EmbeddedAsset
toOutOfBandAsset
.FontAsset
is nowFontOutOfBandAsset
ImageAsset
is nowImageOutOfBandAsset
AudioAsset
is nowAudioOutOfBandAsset
-
The
Bytes
property on theAsset
scriptable object is now accessible through a getter instead of a field. -
Enforced PascalCase formatting for
EmbeddedAssetType
enum for consistency. -
Enforced PascalCase formatting for
Fit
enum for consistency. For example,Fit.contain
is nowFit.Contain
-
The API for loading from bytes has changed from:
public static File Load(string name, byte[] contents, int id, Asset asset = null)
to :
public static File Load(byte[] riveFileByteContents, int cacheId)