@rive-app/webgl-single 1.0.104 → 1.1.0
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 +117 -83
- package/rive.js.map +1 -1
- package/rive_advanced.mjs.d.ts +10 -0
package/rive_advanced.mjs.d.ts
CHANGED
|
@@ -661,6 +661,11 @@ export declare class Mat2D {
|
|
|
661
661
|
* @returns True if the matrix could be inverted
|
|
662
662
|
*/
|
|
663
663
|
invert(mat: Mat2D): boolean;
|
|
664
|
+
|
|
665
|
+
/**
|
|
666
|
+
* Deletes the underlying CPP object created for this instance
|
|
667
|
+
*/
|
|
668
|
+
delete(): void;
|
|
664
669
|
}
|
|
665
670
|
|
|
666
671
|
/**
|
|
@@ -676,4 +681,9 @@ export declare class Vec2D {
|
|
|
676
681
|
* Returns the y coordinate of the vector
|
|
677
682
|
*/
|
|
678
683
|
y(): number;
|
|
684
|
+
|
|
685
|
+
/**
|
|
686
|
+
* Deletes the underlying CPP object created for this instance
|
|
687
|
+
*/
|
|
688
|
+
delete(): void;
|
|
679
689
|
}
|