@galacean/engine-spine 1.1.0-beta.18 → 1.1.0-beta.19
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/dist/browser.js +1 -1
- package/dist/main.js +1 -1
- package/dist/main.js.map +1 -1
- package/dist/miniprogram.js +1 -1
- package/dist/module.js +1 -1
- package/dist/module.js.map +1 -1
- package/package.json +1 -1
- package/types/SpineRenderer.d.ts +3 -0
package/package.json
CHANGED
package/types/SpineRenderer.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Script, Entity } from "@galacean/engine";
|
|
2
2
|
import { SpineAnimation } from "./SpineAnimation";
|
|
3
3
|
export declare class SpineRenderer extends Script {
|
|
4
|
+
private _priority;
|
|
4
5
|
private _resource;
|
|
5
6
|
private _animationName;
|
|
6
7
|
private _loop;
|
|
@@ -12,6 +13,8 @@ export declare class SpineRenderer extends Script {
|
|
|
12
13
|
_animationNames: Array<string>;
|
|
13
14
|
/** @internal */
|
|
14
15
|
_skinNames: Array<string>;
|
|
16
|
+
get priority(): number;
|
|
17
|
+
set priority(value: number);
|
|
15
18
|
get resource(): Entity | null;
|
|
16
19
|
set resource(value: Entity | null);
|
|
17
20
|
get animationName(): string;
|