vue-phaserjs 1.20.0 → 1.20.2
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/components/Circle.vue.d.ts +28 -28
- package/dist/components/Container.vue.d.ts +41 -34
- package/dist/components/Game.vue.d.ts +14 -5
- package/dist/components/Image.vue.d.ts +28 -28
- package/dist/components/Nineslice.vue.d.ts +28 -28
- package/dist/components/PathFollower.vue.d.ts +28 -28
- package/dist/components/Rectangle.vue.d.ts +28 -28
- package/dist/components/Scene.vue.d.ts +13 -6
- package/dist/components/Sprite.vue.d.ts +28 -28
- package/dist/components/Text.vue.d.ts +28 -28
- package/dist/components/TileSprite.vue.d.ts +14 -14
- package/dist/components/Tilemap.vue.d.ts +12 -5
- package/dist/components/Zone.vue.d.ts +28 -28
- package/dist/composables/useAnimations.d.ts +2 -2
- package/dist/utils/setterMap/global/GlobalSetterMap.d.ts +42 -42
- package/dist/utils/setterMap/global/TweenSetterMap.d.ts +42 -42
- package/dist/utils/setterMap/shared/AnimationSetterMap.d.ts +14 -14
- package/package.json +6 -6
|
@@ -34,9 +34,9 @@ declare const _default: import('vue').DefineComponent<PathFollowerProps, {}, {},
|
|
|
34
34
|
"update:height": (args_0?: number | undefined) => any;
|
|
35
35
|
"update:tween": (args_0?: {
|
|
36
36
|
[x: string]: any;
|
|
37
|
-
delay?: number | Function | undefined;
|
|
37
|
+
delay?: (number | Function) | undefined;
|
|
38
38
|
duration?: number | undefined;
|
|
39
|
-
ease?: string | Function | undefined;
|
|
39
|
+
ease?: (string | Function) | undefined;
|
|
40
40
|
easeParams?: any[] | undefined;
|
|
41
41
|
hold?: number | undefined;
|
|
42
42
|
repeat?: number | undefined;
|
|
@@ -44,12 +44,12 @@ declare const _default: import('vue').DefineComponent<PathFollowerProps, {}, {},
|
|
|
44
44
|
yoyo?: boolean | undefined;
|
|
45
45
|
flipX?: boolean | undefined;
|
|
46
46
|
flipY?: boolean | undefined;
|
|
47
|
-
completeDelay?: string | number |
|
|
48
|
-
loop?: string | number |
|
|
49
|
-
loopDelay?: string | number |
|
|
47
|
+
completeDelay?: (string | number | Function | object | any[]) | undefined;
|
|
48
|
+
loop?: (string | number | Function | object | any[]) | undefined;
|
|
49
|
+
loopDelay?: (string | number | Function | object | any[]) | undefined;
|
|
50
50
|
paused?: boolean | undefined;
|
|
51
51
|
props?: {
|
|
52
|
-
[key: string]:
|
|
52
|
+
[key: string]: (number | string | Phaser.Types.Tweens.GetEndCallback | Phaser.Types.Tweens.TweenPropConfig);
|
|
53
53
|
} | undefined;
|
|
54
54
|
callbackScope?: any;
|
|
55
55
|
onComplete?: Phaser.Types.Tweens.TweenOnCompleteCallback | undefined;
|
|
@@ -73,13 +73,13 @@ declare const _default: import('vue').DefineComponent<PathFollowerProps, {}, {},
|
|
|
73
73
|
onResume?: Phaser.Types.Tweens.TweenOnResumeCallback | undefined;
|
|
74
74
|
onResumeParams?: any[] | undefined;
|
|
75
75
|
persist?: boolean | undefined;
|
|
76
|
-
interpolation?: string | Function | undefined;
|
|
76
|
+
interpolation?: (string | Function) | undefined;
|
|
77
77
|
} | undefined) => any;
|
|
78
78
|
"update:tweenchain": (args_0?: {
|
|
79
79
|
[x: string]: any;
|
|
80
|
-
delay?: number | Function | undefined;
|
|
80
|
+
delay?: (number | Function) | undefined;
|
|
81
81
|
duration?: number | undefined;
|
|
82
|
-
ease?: string | Function | undefined;
|
|
82
|
+
ease?: (string | Function) | undefined;
|
|
83
83
|
easeParams?: any[] | undefined;
|
|
84
84
|
hold?: number | undefined;
|
|
85
85
|
repeat?: number | undefined;
|
|
@@ -87,12 +87,12 @@ declare const _default: import('vue').DefineComponent<PathFollowerProps, {}, {},
|
|
|
87
87
|
yoyo?: boolean | undefined;
|
|
88
88
|
flipX?: boolean | undefined;
|
|
89
89
|
flipY?: boolean | undefined;
|
|
90
|
-
completeDelay?: string | number |
|
|
91
|
-
loop?: string | number |
|
|
92
|
-
loopDelay?: string | number |
|
|
90
|
+
completeDelay?: (string | number | Function | object | any[]) | undefined;
|
|
91
|
+
loop?: (string | number | Function | object | any[]) | undefined;
|
|
92
|
+
loopDelay?: (string | number | Function | object | any[]) | undefined;
|
|
93
93
|
paused?: boolean | undefined;
|
|
94
94
|
props?: {
|
|
95
|
-
[key: string]:
|
|
95
|
+
[key: string]: (number | string | Phaser.Types.Tweens.GetEndCallback | Phaser.Types.Tweens.TweenPropConfig);
|
|
96
96
|
} | undefined;
|
|
97
97
|
callbackScope?: any;
|
|
98
98
|
onComplete?: Phaser.Types.Tweens.TweenOnCompleteCallback | undefined;
|
|
@@ -116,7 +116,7 @@ declare const _default: import('vue').DefineComponent<PathFollowerProps, {}, {},
|
|
|
116
116
|
onResume?: Phaser.Types.Tweens.TweenOnResumeCallback | undefined;
|
|
117
117
|
onResumeParams?: any[] | undefined;
|
|
118
118
|
persist?: boolean | undefined;
|
|
119
|
-
interpolation?: string | Function | undefined;
|
|
119
|
+
interpolation?: (string | Function) | undefined;
|
|
120
120
|
}[] | undefined) => any;
|
|
121
121
|
"update:flipX": (args_0?: boolean | undefined) => any;
|
|
122
122
|
"update:flipY": (args_0?: boolean | undefined) => any;
|
|
@@ -203,9 +203,9 @@ declare const _default: import('vue').DefineComponent<PathFollowerProps, {}, {},
|
|
|
203
203
|
"onUpdate:height"?: ((args_0?: number | undefined) => any) | undefined;
|
|
204
204
|
"onUpdate:tween"?: ((args_0?: {
|
|
205
205
|
[x: string]: any;
|
|
206
|
-
delay?: number | Function | undefined;
|
|
206
|
+
delay?: (number | Function) | undefined;
|
|
207
207
|
duration?: number | undefined;
|
|
208
|
-
ease?: string | Function | undefined;
|
|
208
|
+
ease?: (string | Function) | undefined;
|
|
209
209
|
easeParams?: any[] | undefined;
|
|
210
210
|
hold?: number | undefined;
|
|
211
211
|
repeat?: number | undefined;
|
|
@@ -213,12 +213,12 @@ declare const _default: import('vue').DefineComponent<PathFollowerProps, {}, {},
|
|
|
213
213
|
yoyo?: boolean | undefined;
|
|
214
214
|
flipX?: boolean | undefined;
|
|
215
215
|
flipY?: boolean | undefined;
|
|
216
|
-
completeDelay?: string | number |
|
|
217
|
-
loop?: string | number |
|
|
218
|
-
loopDelay?: string | number |
|
|
216
|
+
completeDelay?: (string | number | Function | object | any[]) | undefined;
|
|
217
|
+
loop?: (string | number | Function | object | any[]) | undefined;
|
|
218
|
+
loopDelay?: (string | number | Function | object | any[]) | undefined;
|
|
219
219
|
paused?: boolean | undefined;
|
|
220
220
|
props?: {
|
|
221
|
-
[key: string]:
|
|
221
|
+
[key: string]: (number | string | Phaser.Types.Tweens.GetEndCallback | Phaser.Types.Tweens.TweenPropConfig);
|
|
222
222
|
} | undefined;
|
|
223
223
|
callbackScope?: any;
|
|
224
224
|
onComplete?: Phaser.Types.Tweens.TweenOnCompleteCallback | undefined;
|
|
@@ -242,13 +242,13 @@ declare const _default: import('vue').DefineComponent<PathFollowerProps, {}, {},
|
|
|
242
242
|
onResume?: Phaser.Types.Tweens.TweenOnResumeCallback | undefined;
|
|
243
243
|
onResumeParams?: any[] | undefined;
|
|
244
244
|
persist?: boolean | undefined;
|
|
245
|
-
interpolation?: string | Function | undefined;
|
|
245
|
+
interpolation?: (string | Function) | undefined;
|
|
246
246
|
} | undefined) => any) | undefined;
|
|
247
247
|
"onUpdate:tweenchain"?: ((args_0?: {
|
|
248
248
|
[x: string]: any;
|
|
249
|
-
delay?: number | Function | undefined;
|
|
249
|
+
delay?: (number | Function) | undefined;
|
|
250
250
|
duration?: number | undefined;
|
|
251
|
-
ease?: string | Function | undefined;
|
|
251
|
+
ease?: (string | Function) | undefined;
|
|
252
252
|
easeParams?: any[] | undefined;
|
|
253
253
|
hold?: number | undefined;
|
|
254
254
|
repeat?: number | undefined;
|
|
@@ -256,12 +256,12 @@ declare const _default: import('vue').DefineComponent<PathFollowerProps, {}, {},
|
|
|
256
256
|
yoyo?: boolean | undefined;
|
|
257
257
|
flipX?: boolean | undefined;
|
|
258
258
|
flipY?: boolean | undefined;
|
|
259
|
-
completeDelay?: string | number |
|
|
260
|
-
loop?: string | number |
|
|
261
|
-
loopDelay?: string | number |
|
|
259
|
+
completeDelay?: (string | number | Function | object | any[]) | undefined;
|
|
260
|
+
loop?: (string | number | Function | object | any[]) | undefined;
|
|
261
|
+
loopDelay?: (string | number | Function | object | any[]) | undefined;
|
|
262
262
|
paused?: boolean | undefined;
|
|
263
263
|
props?: {
|
|
264
|
-
[key: string]:
|
|
264
|
+
[key: string]: (number | string | Phaser.Types.Tweens.GetEndCallback | Phaser.Types.Tweens.TweenPropConfig);
|
|
265
265
|
} | undefined;
|
|
266
266
|
callbackScope?: any;
|
|
267
267
|
onComplete?: Phaser.Types.Tweens.TweenOnCompleteCallback | undefined;
|
|
@@ -285,7 +285,7 @@ declare const _default: import('vue').DefineComponent<PathFollowerProps, {}, {},
|
|
|
285
285
|
onResume?: Phaser.Types.Tweens.TweenOnResumeCallback | undefined;
|
|
286
286
|
onResumeParams?: any[] | undefined;
|
|
287
287
|
persist?: boolean | undefined;
|
|
288
|
-
interpolation?: string | Function | undefined;
|
|
288
|
+
interpolation?: (string | Function) | undefined;
|
|
289
289
|
}[] | undefined) => any) | undefined;
|
|
290
290
|
"onUpdate:flipX"?: ((args_0?: boolean | undefined) => any) | undefined;
|
|
291
291
|
"onUpdate:flipY"?: ((args_0?: boolean | undefined) => any) | undefined;
|
|
@@ -34,9 +34,9 @@ declare const _default: import('vue').DefineComponent<RectangleProps, {}, {}, {}
|
|
|
34
34
|
"update:height": (args_0?: number | undefined) => any;
|
|
35
35
|
"update:tween": (args_0?: {
|
|
36
36
|
[x: string]: any;
|
|
37
|
-
delay?: number | Function | undefined;
|
|
37
|
+
delay?: (number | Function) | undefined;
|
|
38
38
|
duration?: number | undefined;
|
|
39
|
-
ease?: string | Function | undefined;
|
|
39
|
+
ease?: (string | Function) | undefined;
|
|
40
40
|
easeParams?: any[] | undefined;
|
|
41
41
|
hold?: number | undefined;
|
|
42
42
|
repeat?: number | undefined;
|
|
@@ -44,12 +44,12 @@ declare const _default: import('vue').DefineComponent<RectangleProps, {}, {}, {}
|
|
|
44
44
|
yoyo?: boolean | undefined;
|
|
45
45
|
flipX?: boolean | undefined;
|
|
46
46
|
flipY?: boolean | undefined;
|
|
47
|
-
completeDelay?: string | number |
|
|
48
|
-
loop?: string | number |
|
|
49
|
-
loopDelay?: string | number |
|
|
47
|
+
completeDelay?: (string | number | Function | object | any[]) | undefined;
|
|
48
|
+
loop?: (string | number | Function | object | any[]) | undefined;
|
|
49
|
+
loopDelay?: (string | number | Function | object | any[]) | undefined;
|
|
50
50
|
paused?: boolean | undefined;
|
|
51
51
|
props?: {
|
|
52
|
-
[key: string]:
|
|
52
|
+
[key: string]: (number | string | Phaser.Types.Tweens.GetEndCallback | Phaser.Types.Tweens.TweenPropConfig);
|
|
53
53
|
} | undefined;
|
|
54
54
|
callbackScope?: any;
|
|
55
55
|
onComplete?: Phaser.Types.Tweens.TweenOnCompleteCallback | undefined;
|
|
@@ -73,13 +73,13 @@ declare const _default: import('vue').DefineComponent<RectangleProps, {}, {}, {}
|
|
|
73
73
|
onResume?: Phaser.Types.Tweens.TweenOnResumeCallback | undefined;
|
|
74
74
|
onResumeParams?: any[] | undefined;
|
|
75
75
|
persist?: boolean | undefined;
|
|
76
|
-
interpolation?: string | Function | undefined;
|
|
76
|
+
interpolation?: (string | Function) | undefined;
|
|
77
77
|
} | undefined) => any;
|
|
78
78
|
"update:tweenchain": (args_0?: {
|
|
79
79
|
[x: string]: any;
|
|
80
|
-
delay?: number | Function | undefined;
|
|
80
|
+
delay?: (number | Function) | undefined;
|
|
81
81
|
duration?: number | undefined;
|
|
82
|
-
ease?: string | Function | undefined;
|
|
82
|
+
ease?: (string | Function) | undefined;
|
|
83
83
|
easeParams?: any[] | undefined;
|
|
84
84
|
hold?: number | undefined;
|
|
85
85
|
repeat?: number | undefined;
|
|
@@ -87,12 +87,12 @@ declare const _default: import('vue').DefineComponent<RectangleProps, {}, {}, {}
|
|
|
87
87
|
yoyo?: boolean | undefined;
|
|
88
88
|
flipX?: boolean | undefined;
|
|
89
89
|
flipY?: boolean | undefined;
|
|
90
|
-
completeDelay?: string | number |
|
|
91
|
-
loop?: string | number |
|
|
92
|
-
loopDelay?: string | number |
|
|
90
|
+
completeDelay?: (string | number | Function | object | any[]) | undefined;
|
|
91
|
+
loop?: (string | number | Function | object | any[]) | undefined;
|
|
92
|
+
loopDelay?: (string | number | Function | object | any[]) | undefined;
|
|
93
93
|
paused?: boolean | undefined;
|
|
94
94
|
props?: {
|
|
95
|
-
[key: string]:
|
|
95
|
+
[key: string]: (number | string | Phaser.Types.Tweens.GetEndCallback | Phaser.Types.Tweens.TweenPropConfig);
|
|
96
96
|
} | undefined;
|
|
97
97
|
callbackScope?: any;
|
|
98
98
|
onComplete?: Phaser.Types.Tweens.TweenOnCompleteCallback | undefined;
|
|
@@ -116,7 +116,7 @@ declare const _default: import('vue').DefineComponent<RectangleProps, {}, {}, {}
|
|
|
116
116
|
onResume?: Phaser.Types.Tweens.TweenOnResumeCallback | undefined;
|
|
117
117
|
onResumeParams?: any[] | undefined;
|
|
118
118
|
persist?: boolean | undefined;
|
|
119
|
-
interpolation?: string | Function | undefined;
|
|
119
|
+
interpolation?: (string | Function) | undefined;
|
|
120
120
|
}[] | undefined) => any;
|
|
121
121
|
"update:alpha": (args_0?: number | undefined) => any;
|
|
122
122
|
"update:blendMode": (args_0?: string | number | Phaser.BlendModes | undefined) => any;
|
|
@@ -183,9 +183,9 @@ declare const _default: import('vue').DefineComponent<RectangleProps, {}, {}, {}
|
|
|
183
183
|
"onUpdate:height"?: ((args_0?: number | undefined) => any) | undefined;
|
|
184
184
|
"onUpdate:tween"?: ((args_0?: {
|
|
185
185
|
[x: string]: any;
|
|
186
|
-
delay?: number | Function | undefined;
|
|
186
|
+
delay?: (number | Function) | undefined;
|
|
187
187
|
duration?: number | undefined;
|
|
188
|
-
ease?: string | Function | undefined;
|
|
188
|
+
ease?: (string | Function) | undefined;
|
|
189
189
|
easeParams?: any[] | undefined;
|
|
190
190
|
hold?: number | undefined;
|
|
191
191
|
repeat?: number | undefined;
|
|
@@ -193,12 +193,12 @@ declare const _default: import('vue').DefineComponent<RectangleProps, {}, {}, {}
|
|
|
193
193
|
yoyo?: boolean | undefined;
|
|
194
194
|
flipX?: boolean | undefined;
|
|
195
195
|
flipY?: boolean | undefined;
|
|
196
|
-
completeDelay?: string | number |
|
|
197
|
-
loop?: string | number |
|
|
198
|
-
loopDelay?: string | number |
|
|
196
|
+
completeDelay?: (string | number | Function | object | any[]) | undefined;
|
|
197
|
+
loop?: (string | number | Function | object | any[]) | undefined;
|
|
198
|
+
loopDelay?: (string | number | Function | object | any[]) | undefined;
|
|
199
199
|
paused?: boolean | undefined;
|
|
200
200
|
props?: {
|
|
201
|
-
[key: string]:
|
|
201
|
+
[key: string]: (number | string | Phaser.Types.Tweens.GetEndCallback | Phaser.Types.Tweens.TweenPropConfig);
|
|
202
202
|
} | undefined;
|
|
203
203
|
callbackScope?: any;
|
|
204
204
|
onComplete?: Phaser.Types.Tweens.TweenOnCompleteCallback | undefined;
|
|
@@ -222,13 +222,13 @@ declare const _default: import('vue').DefineComponent<RectangleProps, {}, {}, {}
|
|
|
222
222
|
onResume?: Phaser.Types.Tweens.TweenOnResumeCallback | undefined;
|
|
223
223
|
onResumeParams?: any[] | undefined;
|
|
224
224
|
persist?: boolean | undefined;
|
|
225
|
-
interpolation?: string | Function | undefined;
|
|
225
|
+
interpolation?: (string | Function) | undefined;
|
|
226
226
|
} | undefined) => any) | undefined;
|
|
227
227
|
"onUpdate:tweenchain"?: ((args_0?: {
|
|
228
228
|
[x: string]: any;
|
|
229
|
-
delay?: number | Function | undefined;
|
|
229
|
+
delay?: (number | Function) | undefined;
|
|
230
230
|
duration?: number | undefined;
|
|
231
|
-
ease?: string | Function | undefined;
|
|
231
|
+
ease?: (string | Function) | undefined;
|
|
232
232
|
easeParams?: any[] | undefined;
|
|
233
233
|
hold?: number | undefined;
|
|
234
234
|
repeat?: number | undefined;
|
|
@@ -236,12 +236,12 @@ declare const _default: import('vue').DefineComponent<RectangleProps, {}, {}, {}
|
|
|
236
236
|
yoyo?: boolean | undefined;
|
|
237
237
|
flipX?: boolean | undefined;
|
|
238
238
|
flipY?: boolean | undefined;
|
|
239
|
-
completeDelay?: string | number |
|
|
240
|
-
loop?: string | number |
|
|
241
|
-
loopDelay?: string | number |
|
|
239
|
+
completeDelay?: (string | number | Function | object | any[]) | undefined;
|
|
240
|
+
loop?: (string | number | Function | object | any[]) | undefined;
|
|
241
|
+
loopDelay?: (string | number | Function | object | any[]) | undefined;
|
|
242
242
|
paused?: boolean | undefined;
|
|
243
243
|
props?: {
|
|
244
|
-
[key: string]:
|
|
244
|
+
[key: string]: (number | string | Phaser.Types.Tweens.GetEndCallback | Phaser.Types.Tweens.TweenPropConfig);
|
|
245
245
|
} | undefined;
|
|
246
246
|
callbackScope?: any;
|
|
247
247
|
onComplete?: Phaser.Types.Tweens.TweenOnCompleteCallback | undefined;
|
|
@@ -265,7 +265,7 @@ declare const _default: import('vue').DefineComponent<RectangleProps, {}, {}, {}
|
|
|
265
265
|
onResume?: Phaser.Types.Tweens.TweenOnResumeCallback | undefined;
|
|
266
266
|
onResumeParams?: any[] | undefined;
|
|
267
267
|
persist?: boolean | undefined;
|
|
268
|
-
interpolation?: string | Function | undefined;
|
|
268
|
+
interpolation?: (string | Function) | undefined;
|
|
269
269
|
}[] | undefined) => any) | undefined;
|
|
270
270
|
"onUpdate:alpha"?: ((args_0?: number | undefined) => any) | undefined;
|
|
271
271
|
"onUpdate:blendMode"?: ((args_0?: string | number | Phaser.BlendModes | undefined) => any) | undefined;
|
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
import { SceneProps } from '../models/scene/SceneProps';
|
|
2
2
|
import { SceneWithPlugins } from '../models/scene/SceneWithPlugins';
|
|
3
|
-
declare
|
|
3
|
+
declare function __VLS_template(): {
|
|
4
|
+
slots: Readonly<{
|
|
5
|
+
default: (props: Record<string, never>) => unknown;
|
|
6
|
+
}> & {
|
|
7
|
+
default: (props: Record<string, never>) => unknown;
|
|
8
|
+
};
|
|
9
|
+
refs: {};
|
|
10
|
+
attrs: Partial<{}>;
|
|
11
|
+
};
|
|
12
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
|
+
declare const __VLS_component: import('vue').DefineComponent<SceneProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
4
14
|
create: (args_0: SceneWithPlugins) => any;
|
|
5
15
|
init: (args_0: SceneWithPlugins) => any;
|
|
6
16
|
preload: (args_0: SceneWithPlugins) => any;
|
|
@@ -12,11 +22,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<Sc
|
|
|
12
22
|
onInit?: ((args_0: SceneWithPlugins) => any) | undefined;
|
|
13
23
|
onPreload?: ((args_0: SceneWithPlugins) => any) | undefined;
|
|
14
24
|
onShutdown?: ((args_0: SceneWithPlugins) => any) | undefined;
|
|
15
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}
|
|
16
|
-
|
|
17
|
-
}> & {
|
|
18
|
-
default: (props: Record<string, never>) => unknown;
|
|
19
|
-
}>;
|
|
25
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}>;
|
|
26
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
20
27
|
export default _default;
|
|
21
28
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
22
29
|
new (): {
|
|
@@ -35,9 +35,9 @@ declare const _default: import('vue').DefineComponent<SpriteProps, {}, {}, {}, {
|
|
|
35
35
|
"update:height": (args_0?: number | undefined) => any;
|
|
36
36
|
"update:tween": (args_0?: {
|
|
37
37
|
[x: string]: any;
|
|
38
|
-
delay?: number | Function | undefined;
|
|
38
|
+
delay?: (number | Function) | undefined;
|
|
39
39
|
duration?: number | undefined;
|
|
40
|
-
ease?: string | Function | undefined;
|
|
40
|
+
ease?: (string | Function) | undefined;
|
|
41
41
|
easeParams?: any[] | undefined;
|
|
42
42
|
hold?: number | undefined;
|
|
43
43
|
repeat?: number | undefined;
|
|
@@ -45,12 +45,12 @@ declare const _default: import('vue').DefineComponent<SpriteProps, {}, {}, {}, {
|
|
|
45
45
|
yoyo?: boolean | undefined;
|
|
46
46
|
flipX?: boolean | undefined;
|
|
47
47
|
flipY?: boolean | undefined;
|
|
48
|
-
completeDelay?: string | number |
|
|
49
|
-
loop?: string | number |
|
|
50
|
-
loopDelay?: string | number |
|
|
48
|
+
completeDelay?: (string | number | Function | object | any[]) | undefined;
|
|
49
|
+
loop?: (string | number | Function | object | any[]) | undefined;
|
|
50
|
+
loopDelay?: (string | number | Function | object | any[]) | undefined;
|
|
51
51
|
paused?: boolean | undefined;
|
|
52
52
|
props?: {
|
|
53
|
-
[key: string]:
|
|
53
|
+
[key: string]: (number | string | Phaser.Types.Tweens.GetEndCallback | Phaser.Types.Tweens.TweenPropConfig);
|
|
54
54
|
} | undefined;
|
|
55
55
|
callbackScope?: any;
|
|
56
56
|
onComplete?: Phaser.Types.Tweens.TweenOnCompleteCallback | undefined;
|
|
@@ -74,13 +74,13 @@ declare const _default: import('vue').DefineComponent<SpriteProps, {}, {}, {}, {
|
|
|
74
74
|
onResume?: Phaser.Types.Tweens.TweenOnResumeCallback | undefined;
|
|
75
75
|
onResumeParams?: any[] | undefined;
|
|
76
76
|
persist?: boolean | undefined;
|
|
77
|
-
interpolation?: string | Function | undefined;
|
|
77
|
+
interpolation?: (string | Function) | undefined;
|
|
78
78
|
} | undefined) => any;
|
|
79
79
|
"update:tweenchain": (args_0?: {
|
|
80
80
|
[x: string]: any;
|
|
81
|
-
delay?: number | Function | undefined;
|
|
81
|
+
delay?: (number | Function) | undefined;
|
|
82
82
|
duration?: number | undefined;
|
|
83
|
-
ease?: string | Function | undefined;
|
|
83
|
+
ease?: (string | Function) | undefined;
|
|
84
84
|
easeParams?: any[] | undefined;
|
|
85
85
|
hold?: number | undefined;
|
|
86
86
|
repeat?: number | undefined;
|
|
@@ -88,12 +88,12 @@ declare const _default: import('vue').DefineComponent<SpriteProps, {}, {}, {}, {
|
|
|
88
88
|
yoyo?: boolean | undefined;
|
|
89
89
|
flipX?: boolean | undefined;
|
|
90
90
|
flipY?: boolean | undefined;
|
|
91
|
-
completeDelay?: string | number |
|
|
92
|
-
loop?: string | number |
|
|
93
|
-
loopDelay?: string | number |
|
|
91
|
+
completeDelay?: (string | number | Function | object | any[]) | undefined;
|
|
92
|
+
loop?: (string | number | Function | object | any[]) | undefined;
|
|
93
|
+
loopDelay?: (string | number | Function | object | any[]) | undefined;
|
|
94
94
|
paused?: boolean | undefined;
|
|
95
95
|
props?: {
|
|
96
|
-
[key: string]:
|
|
96
|
+
[key: string]: (number | string | Phaser.Types.Tweens.GetEndCallback | Phaser.Types.Tweens.TweenPropConfig);
|
|
97
97
|
} | undefined;
|
|
98
98
|
callbackScope?: any;
|
|
99
99
|
onComplete?: Phaser.Types.Tweens.TweenOnCompleteCallback | undefined;
|
|
@@ -117,7 +117,7 @@ declare const _default: import('vue').DefineComponent<SpriteProps, {}, {}, {}, {
|
|
|
117
117
|
onResume?: Phaser.Types.Tweens.TweenOnResumeCallback | undefined;
|
|
118
118
|
onResumeParams?: any[] | undefined;
|
|
119
119
|
persist?: boolean | undefined;
|
|
120
|
-
interpolation?: string | Function | undefined;
|
|
120
|
+
interpolation?: (string | Function) | undefined;
|
|
121
121
|
}[] | undefined) => any;
|
|
122
122
|
"update:flipX": (args_0?: boolean | undefined) => any;
|
|
123
123
|
"update:flipY": (args_0?: boolean | undefined) => any;
|
|
@@ -200,9 +200,9 @@ declare const _default: import('vue').DefineComponent<SpriteProps, {}, {}, {}, {
|
|
|
200
200
|
"onUpdate:height"?: ((args_0?: number | undefined) => any) | undefined;
|
|
201
201
|
"onUpdate:tween"?: ((args_0?: {
|
|
202
202
|
[x: string]: any;
|
|
203
|
-
delay?: number | Function | undefined;
|
|
203
|
+
delay?: (number | Function) | undefined;
|
|
204
204
|
duration?: number | undefined;
|
|
205
|
-
ease?: string | Function | undefined;
|
|
205
|
+
ease?: (string | Function) | undefined;
|
|
206
206
|
easeParams?: any[] | undefined;
|
|
207
207
|
hold?: number | undefined;
|
|
208
208
|
repeat?: number | undefined;
|
|
@@ -210,12 +210,12 @@ declare const _default: import('vue').DefineComponent<SpriteProps, {}, {}, {}, {
|
|
|
210
210
|
yoyo?: boolean | undefined;
|
|
211
211
|
flipX?: boolean | undefined;
|
|
212
212
|
flipY?: boolean | undefined;
|
|
213
|
-
completeDelay?: string | number |
|
|
214
|
-
loop?: string | number |
|
|
215
|
-
loopDelay?: string | number |
|
|
213
|
+
completeDelay?: (string | number | Function | object | any[]) | undefined;
|
|
214
|
+
loop?: (string | number | Function | object | any[]) | undefined;
|
|
215
|
+
loopDelay?: (string | number | Function | object | any[]) | undefined;
|
|
216
216
|
paused?: boolean | undefined;
|
|
217
217
|
props?: {
|
|
218
|
-
[key: string]:
|
|
218
|
+
[key: string]: (number | string | Phaser.Types.Tweens.GetEndCallback | Phaser.Types.Tweens.TweenPropConfig);
|
|
219
219
|
} | undefined;
|
|
220
220
|
callbackScope?: any;
|
|
221
221
|
onComplete?: Phaser.Types.Tweens.TweenOnCompleteCallback | undefined;
|
|
@@ -239,13 +239,13 @@ declare const _default: import('vue').DefineComponent<SpriteProps, {}, {}, {}, {
|
|
|
239
239
|
onResume?: Phaser.Types.Tweens.TweenOnResumeCallback | undefined;
|
|
240
240
|
onResumeParams?: any[] | undefined;
|
|
241
241
|
persist?: boolean | undefined;
|
|
242
|
-
interpolation?: string | Function | undefined;
|
|
242
|
+
interpolation?: (string | Function) | undefined;
|
|
243
243
|
} | undefined) => any) | undefined;
|
|
244
244
|
"onUpdate:tweenchain"?: ((args_0?: {
|
|
245
245
|
[x: string]: any;
|
|
246
|
-
delay?: number | Function | undefined;
|
|
246
|
+
delay?: (number | Function) | undefined;
|
|
247
247
|
duration?: number | undefined;
|
|
248
|
-
ease?: string | Function | undefined;
|
|
248
|
+
ease?: (string | Function) | undefined;
|
|
249
249
|
easeParams?: any[] | undefined;
|
|
250
250
|
hold?: number | undefined;
|
|
251
251
|
repeat?: number | undefined;
|
|
@@ -253,12 +253,12 @@ declare const _default: import('vue').DefineComponent<SpriteProps, {}, {}, {}, {
|
|
|
253
253
|
yoyo?: boolean | undefined;
|
|
254
254
|
flipX?: boolean | undefined;
|
|
255
255
|
flipY?: boolean | undefined;
|
|
256
|
-
completeDelay?: string | number |
|
|
257
|
-
loop?: string | number |
|
|
258
|
-
loopDelay?: string | number |
|
|
256
|
+
completeDelay?: (string | number | Function | object | any[]) | undefined;
|
|
257
|
+
loop?: (string | number | Function | object | any[]) | undefined;
|
|
258
|
+
loopDelay?: (string | number | Function | object | any[]) | undefined;
|
|
259
259
|
paused?: boolean | undefined;
|
|
260
260
|
props?: {
|
|
261
|
-
[key: string]:
|
|
261
|
+
[key: string]: (number | string | Phaser.Types.Tweens.GetEndCallback | Phaser.Types.Tweens.TweenPropConfig);
|
|
262
262
|
} | undefined;
|
|
263
263
|
callbackScope?: any;
|
|
264
264
|
onComplete?: Phaser.Types.Tweens.TweenOnCompleteCallback | undefined;
|
|
@@ -282,7 +282,7 @@ declare const _default: import('vue').DefineComponent<SpriteProps, {}, {}, {}, {
|
|
|
282
282
|
onResume?: Phaser.Types.Tweens.TweenOnResumeCallback | undefined;
|
|
283
283
|
onResumeParams?: any[] | undefined;
|
|
284
284
|
persist?: boolean | undefined;
|
|
285
|
-
interpolation?: string | Function | undefined;
|
|
285
|
+
interpolation?: (string | Function) | undefined;
|
|
286
286
|
}[] | undefined) => any) | undefined;
|
|
287
287
|
"onUpdate:flipX"?: ((args_0?: boolean | undefined) => any) | undefined;
|
|
288
288
|
"onUpdate:flipY"?: ((args_0?: boolean | undefined) => any) | undefined;
|
|
@@ -27,9 +27,9 @@ declare const _default: import('vue').DefineComponent<TextProps, {}, {}, {}, {},
|
|
|
27
27
|
"update:height": (args_0?: number | undefined) => any;
|
|
28
28
|
"update:tween": (args_0?: {
|
|
29
29
|
[x: string]: any;
|
|
30
|
-
delay?: number | Function | undefined;
|
|
30
|
+
delay?: (number | Function) | undefined;
|
|
31
31
|
duration?: number | undefined;
|
|
32
|
-
ease?: string | Function | undefined;
|
|
32
|
+
ease?: (string | Function) | undefined;
|
|
33
33
|
easeParams?: any[] | undefined;
|
|
34
34
|
hold?: number | undefined;
|
|
35
35
|
repeat?: number | undefined;
|
|
@@ -37,12 +37,12 @@ declare const _default: import('vue').DefineComponent<TextProps, {}, {}, {}, {},
|
|
|
37
37
|
yoyo?: boolean | undefined;
|
|
38
38
|
flipX?: boolean | undefined;
|
|
39
39
|
flipY?: boolean | undefined;
|
|
40
|
-
completeDelay?: string | number |
|
|
41
|
-
loop?: string | number |
|
|
42
|
-
loopDelay?: string | number |
|
|
40
|
+
completeDelay?: (string | number | Function | object | any[]) | undefined;
|
|
41
|
+
loop?: (string | number | Function | object | any[]) | undefined;
|
|
42
|
+
loopDelay?: (string | number | Function | object | any[]) | undefined;
|
|
43
43
|
paused?: boolean | undefined;
|
|
44
44
|
props?: {
|
|
45
|
-
[key: string]:
|
|
45
|
+
[key: string]: (number | string | Phaser.Types.Tweens.GetEndCallback | Phaser.Types.Tweens.TweenPropConfig);
|
|
46
46
|
} | undefined;
|
|
47
47
|
callbackScope?: any;
|
|
48
48
|
onComplete?: Phaser.Types.Tweens.TweenOnCompleteCallback | undefined;
|
|
@@ -66,13 +66,13 @@ declare const _default: import('vue').DefineComponent<TextProps, {}, {}, {}, {},
|
|
|
66
66
|
onResume?: Phaser.Types.Tweens.TweenOnResumeCallback | undefined;
|
|
67
67
|
onResumeParams?: any[] | undefined;
|
|
68
68
|
persist?: boolean | undefined;
|
|
69
|
-
interpolation?: string | Function | undefined;
|
|
69
|
+
interpolation?: (string | Function) | undefined;
|
|
70
70
|
} | undefined) => any;
|
|
71
71
|
"update:tweenchain": (args_0?: {
|
|
72
72
|
[x: string]: any;
|
|
73
|
-
delay?: number | Function | undefined;
|
|
73
|
+
delay?: (number | Function) | undefined;
|
|
74
74
|
duration?: number | undefined;
|
|
75
|
-
ease?: string | Function | undefined;
|
|
75
|
+
ease?: (string | Function) | undefined;
|
|
76
76
|
easeParams?: any[] | undefined;
|
|
77
77
|
hold?: number | undefined;
|
|
78
78
|
repeat?: number | undefined;
|
|
@@ -80,12 +80,12 @@ declare const _default: import('vue').DefineComponent<TextProps, {}, {}, {}, {},
|
|
|
80
80
|
yoyo?: boolean | undefined;
|
|
81
81
|
flipX?: boolean | undefined;
|
|
82
82
|
flipY?: boolean | undefined;
|
|
83
|
-
completeDelay?: string | number |
|
|
84
|
-
loop?: string | number |
|
|
85
|
-
loopDelay?: string | number |
|
|
83
|
+
completeDelay?: (string | number | Function | object | any[]) | undefined;
|
|
84
|
+
loop?: (string | number | Function | object | any[]) | undefined;
|
|
85
|
+
loopDelay?: (string | number | Function | object | any[]) | undefined;
|
|
86
86
|
paused?: boolean | undefined;
|
|
87
87
|
props?: {
|
|
88
|
-
[key: string]:
|
|
88
|
+
[key: string]: (number | string | Phaser.Types.Tweens.GetEndCallback | Phaser.Types.Tweens.TweenPropConfig);
|
|
89
89
|
} | undefined;
|
|
90
90
|
callbackScope?: any;
|
|
91
91
|
onComplete?: Phaser.Types.Tweens.TweenOnCompleteCallback | undefined;
|
|
@@ -109,7 +109,7 @@ declare const _default: import('vue').DefineComponent<TextProps, {}, {}, {}, {},
|
|
|
109
109
|
onResume?: Phaser.Types.Tweens.TweenOnResumeCallback | undefined;
|
|
110
110
|
onResumeParams?: any[] | undefined;
|
|
111
111
|
persist?: boolean | undefined;
|
|
112
|
-
interpolation?: string | Function | undefined;
|
|
112
|
+
interpolation?: (string | Function) | undefined;
|
|
113
113
|
}[] | undefined) => any;
|
|
114
114
|
"update:flipX": (args_0?: boolean | undefined) => any;
|
|
115
115
|
"update:flipY": (args_0?: boolean | undefined) => any;
|
|
@@ -189,9 +189,9 @@ declare const _default: import('vue').DefineComponent<TextProps, {}, {}, {}, {},
|
|
|
189
189
|
"onUpdate:height"?: ((args_0?: number | undefined) => any) | undefined;
|
|
190
190
|
"onUpdate:tween"?: ((args_0?: {
|
|
191
191
|
[x: string]: any;
|
|
192
|
-
delay?: number | Function | undefined;
|
|
192
|
+
delay?: (number | Function) | undefined;
|
|
193
193
|
duration?: number | undefined;
|
|
194
|
-
ease?: string | Function | undefined;
|
|
194
|
+
ease?: (string | Function) | undefined;
|
|
195
195
|
easeParams?: any[] | undefined;
|
|
196
196
|
hold?: number | undefined;
|
|
197
197
|
repeat?: number | undefined;
|
|
@@ -199,12 +199,12 @@ declare const _default: import('vue').DefineComponent<TextProps, {}, {}, {}, {},
|
|
|
199
199
|
yoyo?: boolean | undefined;
|
|
200
200
|
flipX?: boolean | undefined;
|
|
201
201
|
flipY?: boolean | undefined;
|
|
202
|
-
completeDelay?: string | number |
|
|
203
|
-
loop?: string | number |
|
|
204
|
-
loopDelay?: string | number |
|
|
202
|
+
completeDelay?: (string | number | Function | object | any[]) | undefined;
|
|
203
|
+
loop?: (string | number | Function | object | any[]) | undefined;
|
|
204
|
+
loopDelay?: (string | number | Function | object | any[]) | undefined;
|
|
205
205
|
paused?: boolean | undefined;
|
|
206
206
|
props?: {
|
|
207
|
-
[key: string]:
|
|
207
|
+
[key: string]: (number | string | Phaser.Types.Tweens.GetEndCallback | Phaser.Types.Tweens.TweenPropConfig);
|
|
208
208
|
} | undefined;
|
|
209
209
|
callbackScope?: any;
|
|
210
210
|
onComplete?: Phaser.Types.Tweens.TweenOnCompleteCallback | undefined;
|
|
@@ -228,13 +228,13 @@ declare const _default: import('vue').DefineComponent<TextProps, {}, {}, {}, {},
|
|
|
228
228
|
onResume?: Phaser.Types.Tweens.TweenOnResumeCallback | undefined;
|
|
229
229
|
onResumeParams?: any[] | undefined;
|
|
230
230
|
persist?: boolean | undefined;
|
|
231
|
-
interpolation?: string | Function | undefined;
|
|
231
|
+
interpolation?: (string | Function) | undefined;
|
|
232
232
|
} | undefined) => any) | undefined;
|
|
233
233
|
"onUpdate:tweenchain"?: ((args_0?: {
|
|
234
234
|
[x: string]: any;
|
|
235
|
-
delay?: number | Function | undefined;
|
|
235
|
+
delay?: (number | Function) | undefined;
|
|
236
236
|
duration?: number | undefined;
|
|
237
|
-
ease?: string | Function | undefined;
|
|
237
|
+
ease?: (string | Function) | undefined;
|
|
238
238
|
easeParams?: any[] | undefined;
|
|
239
239
|
hold?: number | undefined;
|
|
240
240
|
repeat?: number | undefined;
|
|
@@ -242,12 +242,12 @@ declare const _default: import('vue').DefineComponent<TextProps, {}, {}, {}, {},
|
|
|
242
242
|
yoyo?: boolean | undefined;
|
|
243
243
|
flipX?: boolean | undefined;
|
|
244
244
|
flipY?: boolean | undefined;
|
|
245
|
-
completeDelay?: string | number |
|
|
246
|
-
loop?: string | number |
|
|
247
|
-
loopDelay?: string | number |
|
|
245
|
+
completeDelay?: (string | number | Function | object | any[]) | undefined;
|
|
246
|
+
loop?: (string | number | Function | object | any[]) | undefined;
|
|
247
|
+
loopDelay?: (string | number | Function | object | any[]) | undefined;
|
|
248
248
|
paused?: boolean | undefined;
|
|
249
249
|
props?: {
|
|
250
|
-
[key: string]:
|
|
250
|
+
[key: string]: (number | string | Phaser.Types.Tweens.GetEndCallback | Phaser.Types.Tweens.TweenPropConfig);
|
|
251
251
|
} | undefined;
|
|
252
252
|
callbackScope?: any;
|
|
253
253
|
onComplete?: Phaser.Types.Tweens.TweenOnCompleteCallback | undefined;
|
|
@@ -271,7 +271,7 @@ declare const _default: import('vue').DefineComponent<TextProps, {}, {}, {}, {},
|
|
|
271
271
|
onResume?: Phaser.Types.Tweens.TweenOnResumeCallback | undefined;
|
|
272
272
|
onResumeParams?: any[] | undefined;
|
|
273
273
|
persist?: boolean | undefined;
|
|
274
|
-
interpolation?: string | Function | undefined;
|
|
274
|
+
interpolation?: (string | Function) | undefined;
|
|
275
275
|
}[] | undefined) => any) | undefined;
|
|
276
276
|
"onUpdate:flipX"?: ((args_0?: boolean | undefined) => any) | undefined;
|
|
277
277
|
"onUpdate:flipY"?: ((args_0?: boolean | undefined) => any) | undefined;
|