@rive-app/webgl-advanced-single 2.29.2 → 2.29.3
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
CHANGED
package/rive_advanced.mjs.d.ts
CHANGED
|
@@ -925,13 +925,14 @@ export declare class ViewModelInstanceEnum extends ViewModelInstanceValue {
|
|
|
925
925
|
export declare class ViewModelInstanceList extends ViewModelInstanceValue {
|
|
926
926
|
get size(): number;
|
|
927
927
|
addInstance(vmi: ViewModelInstance): void;
|
|
928
|
+
addInstanceAt(vmi: ViewModelInstance, index: number): boolean;
|
|
928
929
|
removeInstance(vmi: ViewModelInstance): void;
|
|
929
930
|
removeInstanceAt(index: number): void;
|
|
930
931
|
instanceAt(index: number): ViewModelInstance;
|
|
931
932
|
swap(a: number, b: number): ViewModelInstance;
|
|
932
933
|
}
|
|
933
934
|
export declare class ViewModelInstanceAssetImage extends ViewModelInstanceValue {
|
|
934
|
-
value(image: ImageInternal):void;
|
|
935
|
+
value(image: ImageInternal | null):void;
|
|
935
936
|
}
|
|
936
937
|
|
|
937
938
|
export declare class ViewModelInstance {
|