@rive-app/webgl
Advanced tools
Comparing version 2.14.0 to 2.14.1
{ | ||
"name": "@rive-app/webgl", | ||
"version": "2.14.0", | ||
"version": "2.14.1", | ||
"description": "Rive's webgl based web api.", | ||
@@ -5,0 +5,0 @@ "main": "rive.js", |
@@ -344,2 +344,7 @@ interface RiveOptions { | ||
/** | ||
* Getter and setter for the artboard volume | ||
*/ | ||
get volume(): number; | ||
set volume(val: number); | ||
/** | ||
* Deletes the underlying instance created via the WASM. It's important to clean up this | ||
@@ -346,0 +351,0 @@ * instance when no longer in use |
import * as rc from "./rive_advanced.mjs"; | ||
export type { FileAsset, FontAsset, ImageAsset } from './rive_advanced.mjs'; | ||
export type { FileAsset, FontAsset, ImageAsset } from "./rive_advanced.mjs"; | ||
/** | ||
@@ -307,2 +307,3 @@ * Generic type for a parameterless void callback | ||
private enableRiveAssetCDN; | ||
private _volume; | ||
durations: number[]; | ||
@@ -529,2 +530,7 @@ frameTimes: number[]; | ||
get contents(): RiveFileContents; | ||
/** | ||
* getter and setter for the volume of the artboard | ||
*/ | ||
get volume(): number; | ||
set volume(value: number); | ||
} | ||
@@ -531,0 +537,0 @@ /** |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
5568795
7835