@rive-app/webgl-single 1.0.80 → 1.0.82
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/rive.js +137 -141
- package/rive.js.map +1 -1
- package/rive_advanced.mjs.d.ts +3 -2
package/rive_advanced.mjs.d.ts
CHANGED
|
@@ -658,12 +658,13 @@ export declare class Mat2D {
|
|
|
658
658
|
* Rive Vector class
|
|
659
659
|
*/
|
|
660
660
|
export declare class Vec2D {
|
|
661
|
+
constructor(x: number, y: number);
|
|
661
662
|
/**
|
|
662
663
|
* Returns the x coordinate of the vector
|
|
663
664
|
*/
|
|
664
|
-
x():
|
|
665
|
+
x(): number;
|
|
665
666
|
/**
|
|
666
667
|
* Returns the y coordinate of the vector
|
|
667
668
|
*/
|
|
668
|
-
y():
|
|
669
|
+
y(): number;
|
|
669
670
|
}
|