@rive-app/canvas-single
Advanced tools
Comparing version 2.14.0 to 2.14.1
{ | ||
"name": "@rive-app/canvas-single", | ||
"version": "2.14.0", | ||
"version": "2.14.1", | ||
"description": "Rive's high-level canvas based web api all in one js file.", | ||
@@ -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
3400545
12788