vue-phaserjs 2.19.2 → 2.20.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.
Files changed (76) hide show
  1. package/dist/components/Arc.vue.d.ts +285 -0
  2. package/dist/components/BitmapText.vue.d.ts +307 -0
  3. package/dist/components/Circle.vue.d.ts +6 -2
  4. package/dist/components/Container.vue.d.ts +2 -8
  5. package/dist/components/Curve.vue.d.ts +281 -0
  6. package/dist/components/Ellipse.vue.d.ts +283 -0
  7. package/dist/components/Graphics.vue.d.ts +257 -0
  8. package/dist/components/Image.vue.d.ts +4 -4
  9. package/dist/components/IsoBox.vue.d.ts +295 -0
  10. package/dist/components/IsoTriangle.vue.d.ts +297 -0
  11. package/dist/components/Line.vue.d.ts +281 -0
  12. package/dist/components/Nineslice.vue.d.ts +13 -5
  13. package/dist/components/Particles.vue.d.ts +263 -0
  14. package/dist/components/PathFollower.vue.d.ts +6 -4
  15. package/dist/components/Polygon.vue.d.ts +279 -0
  16. package/dist/components/RenderTexture.vue.d.ts +301 -0
  17. package/dist/components/Sprite.vue.d.ts +2 -2
  18. package/dist/components/Star.vue.d.ts +283 -0
  19. package/dist/components/Text.vue.d.ts +2 -2
  20. package/dist/components/TileSprite.vue.d.ts +4 -0
  21. package/dist/components/Triangle.vue.d.ts +279 -0
  22. package/dist/components/Video.vue.d.ts +305 -0
  23. package/dist/components/index.d.ts +15 -1
  24. package/dist/index.d.ts +44 -3
  25. package/dist/index.js +27877 -4323
  26. package/dist/models/configuration/ArcConfiguration.d.ts +1 -5
  27. package/dist/models/configuration/BitmapTextConfiguration.d.ts +16 -0
  28. package/dist/models/configuration/ContainerConfiguration.d.ts +1 -2
  29. package/dist/models/configuration/CurveConfiguration.d.ts +5 -0
  30. package/dist/models/configuration/EllipseConfiguration.d.ts +4 -0
  31. package/dist/models/configuration/GraphicsConfiguration.d.ts +11 -0
  32. package/dist/models/configuration/IsoBoxConfiguration.d.ts +6 -0
  33. package/dist/models/configuration/IsoTriangleConfiguration.d.ts +6 -0
  34. package/dist/models/configuration/LineConfiguration.d.ts +5 -0
  35. package/dist/models/configuration/{NineSliceConfiguration.d.ts → NinesliceConfiguration.d.ts} +1 -1
  36. package/dist/models/configuration/ParticlesConfiguration.d.ts +14 -0
  37. package/dist/models/configuration/PolygonConfiguration.d.ts +5 -0
  38. package/dist/models/configuration/RectangleConfiguration.d.ts +1 -3
  39. package/dist/models/configuration/RenderTextureConfiguration.d.ts +17 -0
  40. package/dist/models/configuration/StarConfiguration.d.ts +4 -0
  41. package/dist/models/configuration/TriangleConfiguration.d.ts +5 -0
  42. package/dist/models/configuration/VideoConfiguration.d.ts +18 -0
  43. package/dist/models/emit/BitmapTextEventEmitsOptions.d.ts +7 -0
  44. package/dist/models/emit/CurveEventEmitsOptions.d.ts +7 -0
  45. package/dist/models/emit/EllipseEventEmitsOptions.d.ts +7 -0
  46. package/dist/models/emit/GraphicsEventEmitsOptions.d.ts +7 -0
  47. package/dist/models/emit/IsoBoxEventEmitsOptions.d.ts +7 -0
  48. package/dist/models/emit/IsoTriangleEventEmitsOptions.d.ts +7 -0
  49. package/dist/models/emit/LineEventEmitsOptions.d.ts +7 -0
  50. package/dist/models/emit/{NineSliceEventEmitsOptions.d.ts → NinesliceEventEmitsOptions.d.ts} +3 -3
  51. package/dist/models/emit/ParticlesEventEmitsOptions.d.ts +7 -0
  52. package/dist/models/emit/PolygonEventEmitsOptions.d.ts +7 -0
  53. package/dist/models/emit/RenderTextureEventEmitsOptions.d.ts +7 -0
  54. package/dist/models/emit/StarEventEmitsOptions.d.ts +7 -0
  55. package/dist/models/emit/TriangleEventEmitsOptions.d.ts +7 -0
  56. package/dist/models/emit/VideoEventEmitsOptions.d.ts +7 -0
  57. package/dist/models/scene/SceneLifecycleHooks.d.ts +7 -0
  58. package/dist/util/createSceneClass.d.ts +34 -0
  59. package/dist/util/emit/getUpdateEvent.d.ts +2 -2
  60. package/dist/util/setterMap/BitmapTextSetterMap.d.ts +5 -0
  61. package/dist/util/setterMap/CurveSetterMap.d.ts +5 -0
  62. package/dist/util/setterMap/EllipseSetterMap.d.ts +5 -0
  63. package/dist/util/setterMap/GraphicsSetterMap.d.ts +5 -0
  64. package/dist/util/setterMap/IsoBoxSetterMap.d.ts +5 -0
  65. package/dist/util/setterMap/IsoTriangleSetterMap.d.ts +5 -0
  66. package/dist/util/setterMap/LineSetterMap.d.ts +5 -0
  67. package/dist/util/setterMap/NinesliceSetterMap.d.ts +5 -0
  68. package/dist/util/setterMap/ParticlesSetterMap.d.ts +5 -0
  69. package/dist/util/setterMap/PolygonSetterMap.d.ts +5 -0
  70. package/dist/util/setterMap/RenderTextureSetterMap.d.ts +5 -0
  71. package/dist/util/setterMap/StarSetterMap.d.ts +5 -0
  72. package/dist/util/setterMap/TriangleSetterMap.d.ts +5 -0
  73. package/dist/util/setterMap/VideoSetterMap.d.ts +5 -0
  74. package/dist/util/setterMap/shared/AnimationSetterMap.d.ts +1 -1
  75. package/package.json +16 -7
  76. package/dist/util/setterMap/NineSliceSetterMap.d.ts +0 -5
@@ -0,0 +1,263 @@
1
+ import { ParticlesConfiguration } from '../models/configuration/ParticlesConfiguration';
2
+ import { SceneWithPlugins } from '../models/scene/SceneWithPlugins';
3
+ import { GameObjects } from 'phaser';
4
+ interface ParticlesProps {
5
+ configuration: Partial<ParticlesConfiguration>;
6
+ immediate?: true;
7
+ onComplete?: (scene: SceneWithPlugins, particles: GameObjects.Particles.ParticleEmitter) => void;
8
+ }
9
+ declare const __VLS_export: import('vue').DefineComponent<ParticlesProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
10
+ clickoutside: (...args: Phaser.Types.Input.EventData[]) => any;
11
+ drag: (...args: Phaser.Types.Input.EventData[]) => any;
12
+ dragend: (...args: Phaser.Types.Input.EventData[]) => any;
13
+ dragenter: (...args: Phaser.Types.Input.EventData[]) => any;
14
+ dragleave: (...args: Phaser.Types.Input.EventData[]) => any;
15
+ dragover: (...args: Phaser.Types.Input.EventData[]) => any;
16
+ dragstart: (...args: Phaser.Types.Input.EventData[]) => any;
17
+ drop: (...args: Phaser.Types.Input.EventData[]) => any;
18
+ pointerdown: (...args: Phaser.Types.Input.EventData[]) => any;
19
+ pointermove: (...args: Phaser.Types.Input.EventData[]) => any;
20
+ pointerout: (...args: Phaser.Types.Input.EventData[]) => any;
21
+ pointerover: (...args: Phaser.Types.Input.EventData[]) => any;
22
+ pointerup: (...args: Phaser.Types.Input.EventData[]) => any;
23
+ wheel: (...args: Phaser.Types.Input.EventData[]) => any;
24
+ "update:depth": (args_0?: number | undefined) => any;
25
+ "update:scrollFactorX": (args_0?: number | undefined) => any;
26
+ "update:scrollFactorY": (args_0?: number | undefined) => any;
27
+ "update:hasTransformComponent": (args_0?: boolean | undefined) => any;
28
+ "update:x": (args_0?: number | undefined) => any;
29
+ "update:y": (args_0?: number | undefined) => any;
30
+ "update:z": (args_0?: number | undefined) => any;
31
+ "update:w": (args_0?: number | undefined) => any;
32
+ "update:scale": (args_0?: number | undefined) => any;
33
+ "update:scaleX": (args_0?: number | undefined) => any;
34
+ "update:scaleY": (args_0?: number | undefined) => any;
35
+ "update:angle": (args_0?: number | undefined) => any;
36
+ "update:rotation": (args_0?: number | undefined) => any;
37
+ "update:visible": (args_0?: boolean | undefined) => any;
38
+ "update:active": (args_0?: boolean | undefined) => any;
39
+ "update:scrollFactor": (args_0?: number | undefined) => any;
40
+ "update:tween": (args_0?: {
41
+ [x: string]: any;
42
+ delay?: (number | Function) | undefined;
43
+ duration?: number | undefined;
44
+ ease?: (string | Function) | undefined;
45
+ easeParams?: any[] | undefined;
46
+ hold?: number | undefined;
47
+ repeat?: number | undefined;
48
+ repeatDelay?: number | undefined;
49
+ yoyo?: boolean | undefined;
50
+ flipX?: boolean | undefined;
51
+ flipY?: boolean | undefined;
52
+ completeDelay?: (string | number | Function | object | any[]) | undefined;
53
+ loop?: (string | number | Function | object | any[]) | undefined;
54
+ loopDelay?: (string | number | Function | object | any[]) | undefined;
55
+ paused?: boolean | undefined;
56
+ props?: {
57
+ [key: string]: (number | string | Phaser.Types.Tweens.GetEndCallback | Phaser.Types.Tweens.TweenPropConfig);
58
+ } | undefined;
59
+ callbackScope?: any;
60
+ onComplete?: Phaser.Types.Tweens.TweenOnCompleteCallback | undefined;
61
+ onCompleteParams?: any[] | undefined;
62
+ onLoop?: Phaser.Types.Tweens.TweenOnLoopCallback | undefined;
63
+ onLoopParams?: any[] | undefined;
64
+ onRepeat?: Phaser.Types.Tweens.TweenOnRepeatCallback | undefined;
65
+ onRepeatParams?: any[] | undefined;
66
+ onStart?: Phaser.Types.Tweens.TweenOnStartCallback | undefined;
67
+ onStartParams?: any[] | undefined;
68
+ onStop?: Phaser.Types.Tweens.TweenOnStopCallback | undefined;
69
+ onStopParams?: any[] | undefined;
70
+ onUpdate?: Phaser.Types.Tweens.TweenOnUpdateCallback | undefined;
71
+ onUpdateParams?: any[] | undefined;
72
+ onYoyo?: Phaser.Types.Tweens.TweenOnYoyoCallback | undefined;
73
+ onYoyoParams?: any[] | undefined;
74
+ onActive?: Phaser.Types.Tweens.TweenOnActiveCallback | undefined;
75
+ onActiveParams?: any[] | undefined;
76
+ onPause?: Phaser.Types.Tweens.TweenOnPauseCallback | undefined;
77
+ onPauseParams?: any[] | undefined;
78
+ onResume?: Phaser.Types.Tweens.TweenOnResumeCallback | undefined;
79
+ onResumeParams?: any[] | undefined;
80
+ persist?: boolean | undefined;
81
+ interpolation?: (string | Function) | undefined;
82
+ } | undefined) => any;
83
+ "update:tweenchain": (args_0?: {
84
+ [x: string]: any;
85
+ delay?: (number | Function) | undefined;
86
+ duration?: number | undefined;
87
+ ease?: (string | Function) | undefined;
88
+ easeParams?: any[] | undefined;
89
+ hold?: number | undefined;
90
+ repeat?: number | undefined;
91
+ repeatDelay?: number | undefined;
92
+ yoyo?: boolean | undefined;
93
+ flipX?: boolean | undefined;
94
+ flipY?: boolean | undefined;
95
+ completeDelay?: (string | number | Function | object | any[]) | undefined;
96
+ loop?: (string | number | Function | object | any[]) | undefined;
97
+ loopDelay?: (string | number | Function | object | any[]) | undefined;
98
+ paused?: boolean | undefined;
99
+ props?: {
100
+ [key: string]: (number | string | Phaser.Types.Tweens.GetEndCallback | Phaser.Types.Tweens.TweenPropConfig);
101
+ } | undefined;
102
+ callbackScope?: any;
103
+ onComplete?: Phaser.Types.Tweens.TweenOnCompleteCallback | undefined;
104
+ onCompleteParams?: any[] | undefined;
105
+ onLoop?: Phaser.Types.Tweens.TweenOnLoopCallback | undefined;
106
+ onLoopParams?: any[] | undefined;
107
+ onRepeat?: Phaser.Types.Tweens.TweenOnRepeatCallback | undefined;
108
+ onRepeatParams?: any[] | undefined;
109
+ onStart?: Phaser.Types.Tweens.TweenOnStartCallback | undefined;
110
+ onStartParams?: any[] | undefined;
111
+ onStop?: Phaser.Types.Tweens.TweenOnStopCallback | undefined;
112
+ onStopParams?: any[] | undefined;
113
+ onUpdate?: Phaser.Types.Tweens.TweenOnUpdateCallback | undefined;
114
+ onUpdateParams?: any[] | undefined;
115
+ onYoyo?: Phaser.Types.Tweens.TweenOnYoyoCallback | undefined;
116
+ onYoyoParams?: any[] | undefined;
117
+ onActive?: Phaser.Types.Tweens.TweenOnActiveCallback | undefined;
118
+ onActiveParams?: any[] | undefined;
119
+ onPause?: Phaser.Types.Tweens.TweenOnPauseCallback | undefined;
120
+ onPauseParams?: any[] | undefined;
121
+ onResume?: Phaser.Types.Tweens.TweenOnResumeCallback | undefined;
122
+ onResumeParams?: any[] | undefined;
123
+ persist?: boolean | undefined;
124
+ interpolation?: (string | Function) | undefined;
125
+ }[] | undefined) => any;
126
+ "update:alpha": (args_0?: number | undefined) => any;
127
+ "update:blendMode": (args_0?: string | number | Phaser.BlendModes | undefined) => any;
128
+ "update:mask": (args_0?: Phaser.Display.Masks.GeometryMask | undefined) => any;
129
+ "update:customRenderNodes": (args_0?: object | undefined) => any;
130
+ "update:defaultRenderNodes": (args_0?: object | undefined) => any;
131
+ "update:renderNodeData": (args_0?: object | undefined) => any;
132
+ "update:frame": (args_0?: string | number | undefined) => any;
133
+ "update:texture": (args_0?: string | undefined) => any;
134
+ "update:config": (args_0?: Phaser.Types.GameObjects.Particles.ParticleEmitterConfig | undefined) => any;
135
+ }, string, import('vue').PublicProps, Readonly<ParticlesProps> & Readonly<{
136
+ onClickoutside?: ((...args: Phaser.Types.Input.EventData[]) => any) | undefined;
137
+ onDrag?: ((...args: Phaser.Types.Input.EventData[]) => any) | undefined;
138
+ onDragend?: ((...args: Phaser.Types.Input.EventData[]) => any) | undefined;
139
+ onDragenter?: ((...args: Phaser.Types.Input.EventData[]) => any) | undefined;
140
+ onDragleave?: ((...args: Phaser.Types.Input.EventData[]) => any) | undefined;
141
+ onDragover?: ((...args: Phaser.Types.Input.EventData[]) => any) | undefined;
142
+ onDragstart?: ((...args: Phaser.Types.Input.EventData[]) => any) | undefined;
143
+ onDrop?: ((...args: Phaser.Types.Input.EventData[]) => any) | undefined;
144
+ onPointerdown?: ((...args: Phaser.Types.Input.EventData[]) => any) | undefined;
145
+ onPointermove?: ((...args: Phaser.Types.Input.EventData[]) => any) | undefined;
146
+ onPointerout?: ((...args: Phaser.Types.Input.EventData[]) => any) | undefined;
147
+ onPointerover?: ((...args: Phaser.Types.Input.EventData[]) => any) | undefined;
148
+ onPointerup?: ((...args: Phaser.Types.Input.EventData[]) => any) | undefined;
149
+ onWheel?: ((...args: Phaser.Types.Input.EventData[]) => any) | undefined;
150
+ "onUpdate:depth"?: ((args_0?: number | undefined) => any) | undefined;
151
+ "onUpdate:scrollFactorX"?: ((args_0?: number | undefined) => any) | undefined;
152
+ "onUpdate:scrollFactorY"?: ((args_0?: number | undefined) => any) | undefined;
153
+ "onUpdate:hasTransformComponent"?: ((args_0?: boolean | undefined) => any) | undefined;
154
+ "onUpdate:x"?: ((args_0?: number | undefined) => any) | undefined;
155
+ "onUpdate:y"?: ((args_0?: number | undefined) => any) | undefined;
156
+ "onUpdate:z"?: ((args_0?: number | undefined) => any) | undefined;
157
+ "onUpdate:w"?: ((args_0?: number | undefined) => any) | undefined;
158
+ "onUpdate:scale"?: ((args_0?: number | undefined) => any) | undefined;
159
+ "onUpdate:scaleX"?: ((args_0?: number | undefined) => any) | undefined;
160
+ "onUpdate:scaleY"?: ((args_0?: number | undefined) => any) | undefined;
161
+ "onUpdate:angle"?: ((args_0?: number | undefined) => any) | undefined;
162
+ "onUpdate:rotation"?: ((args_0?: number | undefined) => any) | undefined;
163
+ "onUpdate:visible"?: ((args_0?: boolean | undefined) => any) | undefined;
164
+ "onUpdate:active"?: ((args_0?: boolean | undefined) => any) | undefined;
165
+ "onUpdate:scrollFactor"?: ((args_0?: number | undefined) => any) | undefined;
166
+ "onUpdate:tween"?: ((args_0?: {
167
+ [x: string]: any;
168
+ delay?: (number | Function) | undefined;
169
+ duration?: number | undefined;
170
+ ease?: (string | Function) | undefined;
171
+ easeParams?: any[] | undefined;
172
+ hold?: number | undefined;
173
+ repeat?: number | undefined;
174
+ repeatDelay?: number | undefined;
175
+ yoyo?: boolean | undefined;
176
+ flipX?: boolean | undefined;
177
+ flipY?: boolean | undefined;
178
+ completeDelay?: (string | number | Function | object | any[]) | undefined;
179
+ loop?: (string | number | Function | object | any[]) | undefined;
180
+ loopDelay?: (string | number | Function | object | any[]) | undefined;
181
+ paused?: boolean | undefined;
182
+ props?: {
183
+ [key: string]: (number | string | Phaser.Types.Tweens.GetEndCallback | Phaser.Types.Tweens.TweenPropConfig);
184
+ } | undefined;
185
+ callbackScope?: any;
186
+ onComplete?: Phaser.Types.Tweens.TweenOnCompleteCallback | undefined;
187
+ onCompleteParams?: any[] | undefined;
188
+ onLoop?: Phaser.Types.Tweens.TweenOnLoopCallback | undefined;
189
+ onLoopParams?: any[] | undefined;
190
+ onRepeat?: Phaser.Types.Tweens.TweenOnRepeatCallback | undefined;
191
+ onRepeatParams?: any[] | undefined;
192
+ onStart?: Phaser.Types.Tweens.TweenOnStartCallback | undefined;
193
+ onStartParams?: any[] | undefined;
194
+ onStop?: Phaser.Types.Tweens.TweenOnStopCallback | undefined;
195
+ onStopParams?: any[] | undefined;
196
+ onUpdate?: Phaser.Types.Tweens.TweenOnUpdateCallback | undefined;
197
+ onUpdateParams?: any[] | undefined;
198
+ onYoyo?: Phaser.Types.Tweens.TweenOnYoyoCallback | undefined;
199
+ onYoyoParams?: any[] | undefined;
200
+ onActive?: Phaser.Types.Tweens.TweenOnActiveCallback | undefined;
201
+ onActiveParams?: any[] | undefined;
202
+ onPause?: Phaser.Types.Tweens.TweenOnPauseCallback | undefined;
203
+ onPauseParams?: any[] | undefined;
204
+ onResume?: Phaser.Types.Tweens.TweenOnResumeCallback | undefined;
205
+ onResumeParams?: any[] | undefined;
206
+ persist?: boolean | undefined;
207
+ interpolation?: (string | Function) | undefined;
208
+ } | undefined) => any) | undefined;
209
+ "onUpdate:tweenchain"?: ((args_0?: {
210
+ [x: string]: any;
211
+ delay?: (number | Function) | undefined;
212
+ duration?: number | undefined;
213
+ ease?: (string | Function) | undefined;
214
+ easeParams?: any[] | undefined;
215
+ hold?: number | undefined;
216
+ repeat?: number | undefined;
217
+ repeatDelay?: number | undefined;
218
+ yoyo?: boolean | undefined;
219
+ flipX?: boolean | undefined;
220
+ flipY?: boolean | undefined;
221
+ completeDelay?: (string | number | Function | object | any[]) | undefined;
222
+ loop?: (string | number | Function | object | any[]) | undefined;
223
+ loopDelay?: (string | number | Function | object | any[]) | undefined;
224
+ paused?: boolean | undefined;
225
+ props?: {
226
+ [key: string]: (number | string | Phaser.Types.Tweens.GetEndCallback | Phaser.Types.Tweens.TweenPropConfig);
227
+ } | undefined;
228
+ callbackScope?: any;
229
+ onComplete?: Phaser.Types.Tweens.TweenOnCompleteCallback | undefined;
230
+ onCompleteParams?: any[] | undefined;
231
+ onLoop?: Phaser.Types.Tweens.TweenOnLoopCallback | undefined;
232
+ onLoopParams?: any[] | undefined;
233
+ onRepeat?: Phaser.Types.Tweens.TweenOnRepeatCallback | undefined;
234
+ onRepeatParams?: any[] | undefined;
235
+ onStart?: Phaser.Types.Tweens.TweenOnStartCallback | undefined;
236
+ onStartParams?: any[] | undefined;
237
+ onStop?: Phaser.Types.Tweens.TweenOnStopCallback | undefined;
238
+ onStopParams?: any[] | undefined;
239
+ onUpdate?: Phaser.Types.Tweens.TweenOnUpdateCallback | undefined;
240
+ onUpdateParams?: any[] | undefined;
241
+ onYoyo?: Phaser.Types.Tweens.TweenOnYoyoCallback | undefined;
242
+ onYoyoParams?: any[] | undefined;
243
+ onActive?: Phaser.Types.Tweens.TweenOnActiveCallback | undefined;
244
+ onActiveParams?: any[] | undefined;
245
+ onPause?: Phaser.Types.Tweens.TweenOnPauseCallback | undefined;
246
+ onPauseParams?: any[] | undefined;
247
+ onResume?: Phaser.Types.Tweens.TweenOnResumeCallback | undefined;
248
+ onResumeParams?: any[] | undefined;
249
+ persist?: boolean | undefined;
250
+ interpolation?: (string | Function) | undefined;
251
+ }[] | undefined) => any) | undefined;
252
+ "onUpdate:alpha"?: ((args_0?: number | undefined) => any) | undefined;
253
+ "onUpdate:blendMode"?: ((args_0?: string | number | Phaser.BlendModes | undefined) => any) | undefined;
254
+ "onUpdate:mask"?: ((args_0?: Phaser.Display.Masks.GeometryMask | undefined) => any) | undefined;
255
+ "onUpdate:customRenderNodes"?: ((args_0?: object | undefined) => any) | undefined;
256
+ "onUpdate:defaultRenderNodes"?: ((args_0?: object | undefined) => any) | undefined;
257
+ "onUpdate:renderNodeData"?: ((args_0?: object | undefined) => any) | undefined;
258
+ "onUpdate:frame"?: ((args_0?: string | number | undefined) => any) | undefined;
259
+ "onUpdate:texture"?: ((args_0?: string | undefined) => any) | undefined;
260
+ "onUpdate:config"?: ((args_0?: Phaser.Types.GameObjects.Particles.ParticleEmitterConfig | undefined) => any) | undefined;
261
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
262
+ declare const _default: typeof __VLS_export;
263
+ export default _default;
@@ -150,14 +150,15 @@ declare const __VLS_export: import('vue').DefineComponent<PathFollowerProps, {},
150
150
  "update:tintTopRight": (args_0?: number | undefined) => any;
151
151
  "update:tintBottomLeft": (args_0?: number | undefined) => any;
152
152
  "update:tintBottomRight": (args_0?: number | undefined) => any;
153
- "update:tintFill": (args_0?: boolean | undefined) => any;
153
+ "update:tintMode": (args_0?: number | undefined) => any;
154
154
  "update:tint": (args_0?: number | undefined) => any;
155
155
  "update:isTinted": (args_0?: boolean | undefined) => any;
156
+ "update:to": (args_0?: number | undefined) => any;
156
157
  "update:duration": (args_0?: number | undefined) => any;
157
158
  "update:path": (args_0?: Phaser.Curves.Path | undefined) => any;
158
159
  "update:rotateToPath": (args_0?: boolean | undefined) => any;
160
+ "update:pathRotationOffset": (args_0?: number | undefined) => any;
159
161
  "update:from": (args_0?: number | undefined) => any;
160
- "update:to": (args_0?: number | undefined) => any;
161
162
  "update:positionOnPath": (args_0?: boolean | undefined) => any;
162
163
  "update:rotationOffset": (args_0?: number | undefined) => any;
163
164
  "update:startAt": (args_0?: number | undefined) => any;
@@ -305,14 +306,15 @@ declare const __VLS_export: import('vue').DefineComponent<PathFollowerProps, {},
305
306
  "onUpdate:tintTopRight"?: ((args_0?: number | undefined) => any) | undefined;
306
307
  "onUpdate:tintBottomLeft"?: ((args_0?: number | undefined) => any) | undefined;
307
308
  "onUpdate:tintBottomRight"?: ((args_0?: number | undefined) => any) | undefined;
308
- "onUpdate:tintFill"?: ((args_0?: boolean | undefined) => any) | undefined;
309
+ "onUpdate:tintMode"?: ((args_0?: number | undefined) => any) | undefined;
309
310
  "onUpdate:tint"?: ((args_0?: number | undefined) => any) | undefined;
310
311
  "onUpdate:isTinted"?: ((args_0?: boolean | undefined) => any) | undefined;
312
+ "onUpdate:to"?: ((args_0?: number | undefined) => any) | undefined;
311
313
  "onUpdate:duration"?: ((args_0?: number | undefined) => any) | undefined;
312
314
  "onUpdate:path"?: ((args_0?: Phaser.Curves.Path | undefined) => any) | undefined;
313
315
  "onUpdate:rotateToPath"?: ((args_0?: boolean | undefined) => any) | undefined;
316
+ "onUpdate:pathRotationOffset"?: ((args_0?: number | undefined) => any) | undefined;
314
317
  "onUpdate:from"?: ((args_0?: number | undefined) => any) | undefined;
315
- "onUpdate:to"?: ((args_0?: number | undefined) => any) | undefined;
316
318
  "onUpdate:positionOnPath"?: ((args_0?: boolean | undefined) => any) | undefined;
317
319
  "onUpdate:rotationOffset"?: ((args_0?: number | undefined) => any) | undefined;
318
320
  "onUpdate:startAt"?: ((args_0?: number | undefined) => any) | undefined;
@@ -0,0 +1,279 @@
1
+ import { PolygonConfiguration } from '../models/configuration/PolygonConfiguration';
2
+ import { SceneWithPlugins } from '../models/scene/SceneWithPlugins';
3
+ import { GameObjects } from 'phaser';
4
+ interface PolygonProps {
5
+ configuration: Partial<PolygonConfiguration>;
6
+ immediate?: true;
7
+ onComplete?: (scene: SceneWithPlugins, polygon: GameObjects.Polygon) => void;
8
+ }
9
+ declare const __VLS_export: import('vue').DefineComponent<PolygonProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
10
+ clickoutside: (...args: Phaser.Types.Input.EventData[]) => any;
11
+ drag: (...args: Phaser.Types.Input.EventData[]) => any;
12
+ dragend: (...args: Phaser.Types.Input.EventData[]) => any;
13
+ dragenter: (...args: Phaser.Types.Input.EventData[]) => any;
14
+ dragleave: (...args: Phaser.Types.Input.EventData[]) => any;
15
+ dragover: (...args: Phaser.Types.Input.EventData[]) => any;
16
+ dragstart: (...args: Phaser.Types.Input.EventData[]) => any;
17
+ drop: (...args: Phaser.Types.Input.EventData[]) => any;
18
+ pointerdown: (...args: Phaser.Types.Input.EventData[]) => any;
19
+ pointermove: (...args: Phaser.Types.Input.EventData[]) => any;
20
+ pointerout: (...args: Phaser.Types.Input.EventData[]) => any;
21
+ pointerover: (...args: Phaser.Types.Input.EventData[]) => any;
22
+ pointerup: (...args: Phaser.Types.Input.EventData[]) => any;
23
+ wheel: (...args: Phaser.Types.Input.EventData[]) => any;
24
+ "update:depth": (args_0?: number | undefined) => any;
25
+ "update:originX": (args_0?: number | undefined) => any;
26
+ "update:originY": (args_0?: number | undefined) => any;
27
+ "update:displayOriginX": (args_0?: number | undefined) => any;
28
+ "update:displayOriginY": (args_0?: number | undefined) => any;
29
+ "update:scrollFactorX": (args_0?: number | undefined) => any;
30
+ "update:scrollFactorY": (args_0?: number | undefined) => any;
31
+ "update:hasTransformComponent": (args_0?: boolean | undefined) => any;
32
+ "update:x": (args_0?: number | undefined) => any;
33
+ "update:y": (args_0?: number | undefined) => any;
34
+ "update:z": (args_0?: number | undefined) => any;
35
+ "update:w": (args_0?: number | undefined) => any;
36
+ "update:scale": (args_0?: number | undefined) => any;
37
+ "update:scaleX": (args_0?: number | undefined) => any;
38
+ "update:scaleY": (args_0?: number | undefined) => any;
39
+ "update:angle": (args_0?: number | undefined) => any;
40
+ "update:rotation": (args_0?: number | undefined) => any;
41
+ "update:visible": (args_0?: boolean | undefined) => any;
42
+ "update:active": (args_0?: boolean | undefined) => any;
43
+ "update:scrollFactor": (args_0?: number | undefined) => any;
44
+ "update:origin": (args_0?: number | undefined) => any;
45
+ "update:displayHeight": (args_0?: number | undefined) => any;
46
+ "update:displayWidth": (args_0?: number | undefined) => any;
47
+ "update:tween": (args_0?: {
48
+ [x: string]: any;
49
+ delay?: (number | Function) | undefined;
50
+ duration?: number | undefined;
51
+ ease?: (string | Function) | undefined;
52
+ easeParams?: any[] | undefined;
53
+ hold?: number | undefined;
54
+ repeat?: number | undefined;
55
+ repeatDelay?: number | undefined;
56
+ yoyo?: boolean | undefined;
57
+ flipX?: boolean | undefined;
58
+ flipY?: boolean | undefined;
59
+ completeDelay?: (string | number | Function | object | any[]) | undefined;
60
+ loop?: (string | number | Function | object | any[]) | undefined;
61
+ loopDelay?: (string | number | Function | object | any[]) | undefined;
62
+ paused?: boolean | undefined;
63
+ props?: {
64
+ [key: string]: (number | string | Phaser.Types.Tweens.GetEndCallback | Phaser.Types.Tweens.TweenPropConfig);
65
+ } | undefined;
66
+ callbackScope?: any;
67
+ onComplete?: Phaser.Types.Tweens.TweenOnCompleteCallback | undefined;
68
+ onCompleteParams?: any[] | undefined;
69
+ onLoop?: Phaser.Types.Tweens.TweenOnLoopCallback | undefined;
70
+ onLoopParams?: any[] | undefined;
71
+ onRepeat?: Phaser.Types.Tweens.TweenOnRepeatCallback | undefined;
72
+ onRepeatParams?: any[] | undefined;
73
+ onStart?: Phaser.Types.Tweens.TweenOnStartCallback | undefined;
74
+ onStartParams?: any[] | undefined;
75
+ onStop?: Phaser.Types.Tweens.TweenOnStopCallback | undefined;
76
+ onStopParams?: any[] | undefined;
77
+ onUpdate?: Phaser.Types.Tweens.TweenOnUpdateCallback | undefined;
78
+ onUpdateParams?: any[] | undefined;
79
+ onYoyo?: Phaser.Types.Tweens.TweenOnYoyoCallback | undefined;
80
+ onYoyoParams?: any[] | undefined;
81
+ onActive?: Phaser.Types.Tweens.TweenOnActiveCallback | undefined;
82
+ onActiveParams?: any[] | undefined;
83
+ onPause?: Phaser.Types.Tweens.TweenOnPauseCallback | undefined;
84
+ onPauseParams?: any[] | undefined;
85
+ onResume?: Phaser.Types.Tweens.TweenOnResumeCallback | undefined;
86
+ onResumeParams?: any[] | undefined;
87
+ persist?: boolean | undefined;
88
+ interpolation?: (string | Function) | undefined;
89
+ } | undefined) => any;
90
+ "update:tweenchain": (args_0?: {
91
+ [x: string]: any;
92
+ delay?: (number | Function) | undefined;
93
+ duration?: number | undefined;
94
+ ease?: (string | Function) | undefined;
95
+ easeParams?: any[] | undefined;
96
+ hold?: number | undefined;
97
+ repeat?: number | undefined;
98
+ repeatDelay?: number | undefined;
99
+ yoyo?: boolean | undefined;
100
+ flipX?: boolean | undefined;
101
+ flipY?: boolean | undefined;
102
+ completeDelay?: (string | number | Function | object | any[]) | undefined;
103
+ loop?: (string | number | Function | object | any[]) | undefined;
104
+ loopDelay?: (string | number | Function | object | any[]) | undefined;
105
+ paused?: boolean | undefined;
106
+ props?: {
107
+ [key: string]: (number | string | Phaser.Types.Tweens.GetEndCallback | Phaser.Types.Tweens.TweenPropConfig);
108
+ } | undefined;
109
+ callbackScope?: any;
110
+ onComplete?: Phaser.Types.Tweens.TweenOnCompleteCallback | undefined;
111
+ onCompleteParams?: any[] | undefined;
112
+ onLoop?: Phaser.Types.Tweens.TweenOnLoopCallback | undefined;
113
+ onLoopParams?: any[] | undefined;
114
+ onRepeat?: Phaser.Types.Tweens.TweenOnRepeatCallback | undefined;
115
+ onRepeatParams?: any[] | undefined;
116
+ onStart?: Phaser.Types.Tweens.TweenOnStartCallback | undefined;
117
+ onStartParams?: any[] | undefined;
118
+ onStop?: Phaser.Types.Tweens.TweenOnStopCallback | undefined;
119
+ onStopParams?: any[] | undefined;
120
+ onUpdate?: Phaser.Types.Tweens.TweenOnUpdateCallback | undefined;
121
+ onUpdateParams?: any[] | undefined;
122
+ onYoyo?: Phaser.Types.Tweens.TweenOnYoyoCallback | undefined;
123
+ onYoyoParams?: any[] | undefined;
124
+ onActive?: Phaser.Types.Tweens.TweenOnActiveCallback | undefined;
125
+ onActiveParams?: any[] | undefined;
126
+ onPause?: Phaser.Types.Tweens.TweenOnPauseCallback | undefined;
127
+ onPauseParams?: any[] | undefined;
128
+ onResume?: Phaser.Types.Tweens.TweenOnResumeCallback | undefined;
129
+ onResumeParams?: any[] | undefined;
130
+ persist?: boolean | undefined;
131
+ interpolation?: (string | Function) | undefined;
132
+ }[] | undefined) => any;
133
+ "update:alpha": (args_0?: number | undefined) => any;
134
+ "update:blendMode": (args_0?: string | number | Phaser.BlendModes | undefined) => any;
135
+ "update:mask": (args_0?: Phaser.Display.Masks.GeometryMask | undefined) => any;
136
+ "update:customRenderNodes": (args_0?: object | undefined) => any;
137
+ "update:defaultRenderNodes": (args_0?: object | undefined) => any;
138
+ "update:renderNodeData": (args_0?: object | undefined) => any;
139
+ "update:fillAlpha": (args_0?: number | undefined) => any;
140
+ "update:fillColor": (args_0?: number | undefined) => any;
141
+ "update:strokeStyle": (args_0?: [lineWidth?: number | undefined, color?: number | undefined, alpha?: number | undefined] | undefined) => any;
142
+ "update:points": (args_0?: string | number[] | Phaser.Types.Math.Vector2Like[] | undefined) => any;
143
+ }, string, import('vue').PublicProps, Readonly<PolygonProps> & Readonly<{
144
+ onClickoutside?: ((...args: Phaser.Types.Input.EventData[]) => any) | undefined;
145
+ onDrag?: ((...args: Phaser.Types.Input.EventData[]) => any) | undefined;
146
+ onDragend?: ((...args: Phaser.Types.Input.EventData[]) => any) | undefined;
147
+ onDragenter?: ((...args: Phaser.Types.Input.EventData[]) => any) | undefined;
148
+ onDragleave?: ((...args: Phaser.Types.Input.EventData[]) => any) | undefined;
149
+ onDragover?: ((...args: Phaser.Types.Input.EventData[]) => any) | undefined;
150
+ onDragstart?: ((...args: Phaser.Types.Input.EventData[]) => any) | undefined;
151
+ onDrop?: ((...args: Phaser.Types.Input.EventData[]) => any) | undefined;
152
+ onPointerdown?: ((...args: Phaser.Types.Input.EventData[]) => any) | undefined;
153
+ onPointermove?: ((...args: Phaser.Types.Input.EventData[]) => any) | undefined;
154
+ onPointerout?: ((...args: Phaser.Types.Input.EventData[]) => any) | undefined;
155
+ onPointerover?: ((...args: Phaser.Types.Input.EventData[]) => any) | undefined;
156
+ onPointerup?: ((...args: Phaser.Types.Input.EventData[]) => any) | undefined;
157
+ onWheel?: ((...args: Phaser.Types.Input.EventData[]) => any) | undefined;
158
+ "onUpdate:depth"?: ((args_0?: number | undefined) => any) | undefined;
159
+ "onUpdate:originX"?: ((args_0?: number | undefined) => any) | undefined;
160
+ "onUpdate:originY"?: ((args_0?: number | undefined) => any) | undefined;
161
+ "onUpdate:displayOriginX"?: ((args_0?: number | undefined) => any) | undefined;
162
+ "onUpdate:displayOriginY"?: ((args_0?: number | undefined) => any) | undefined;
163
+ "onUpdate:scrollFactorX"?: ((args_0?: number | undefined) => any) | undefined;
164
+ "onUpdate:scrollFactorY"?: ((args_0?: number | undefined) => any) | undefined;
165
+ "onUpdate:hasTransformComponent"?: ((args_0?: boolean | undefined) => any) | undefined;
166
+ "onUpdate:x"?: ((args_0?: number | undefined) => any) | undefined;
167
+ "onUpdate:y"?: ((args_0?: number | undefined) => any) | undefined;
168
+ "onUpdate:z"?: ((args_0?: number | undefined) => any) | undefined;
169
+ "onUpdate:w"?: ((args_0?: number | undefined) => any) | undefined;
170
+ "onUpdate:scale"?: ((args_0?: number | undefined) => any) | undefined;
171
+ "onUpdate:scaleX"?: ((args_0?: number | undefined) => any) | undefined;
172
+ "onUpdate:scaleY"?: ((args_0?: number | undefined) => any) | undefined;
173
+ "onUpdate:angle"?: ((args_0?: number | undefined) => any) | undefined;
174
+ "onUpdate:rotation"?: ((args_0?: number | undefined) => any) | undefined;
175
+ "onUpdate:visible"?: ((args_0?: boolean | undefined) => any) | undefined;
176
+ "onUpdate:active"?: ((args_0?: boolean | undefined) => any) | undefined;
177
+ "onUpdate:scrollFactor"?: ((args_0?: number | undefined) => any) | undefined;
178
+ "onUpdate:origin"?: ((args_0?: number | undefined) => any) | undefined;
179
+ "onUpdate:displayHeight"?: ((args_0?: number | undefined) => any) | undefined;
180
+ "onUpdate:displayWidth"?: ((args_0?: number | undefined) => any) | undefined;
181
+ "onUpdate:tween"?: ((args_0?: {
182
+ [x: string]: any;
183
+ delay?: (number | Function) | undefined;
184
+ duration?: number | undefined;
185
+ ease?: (string | Function) | undefined;
186
+ easeParams?: any[] | undefined;
187
+ hold?: number | undefined;
188
+ repeat?: number | undefined;
189
+ repeatDelay?: number | undefined;
190
+ yoyo?: boolean | undefined;
191
+ flipX?: boolean | undefined;
192
+ flipY?: boolean | undefined;
193
+ completeDelay?: (string | number | Function | object | any[]) | undefined;
194
+ loop?: (string | number | Function | object | any[]) | undefined;
195
+ loopDelay?: (string | number | Function | object | any[]) | undefined;
196
+ paused?: boolean | undefined;
197
+ props?: {
198
+ [key: string]: (number | string | Phaser.Types.Tweens.GetEndCallback | Phaser.Types.Tweens.TweenPropConfig);
199
+ } | undefined;
200
+ callbackScope?: any;
201
+ onComplete?: Phaser.Types.Tweens.TweenOnCompleteCallback | undefined;
202
+ onCompleteParams?: any[] | undefined;
203
+ onLoop?: Phaser.Types.Tweens.TweenOnLoopCallback | undefined;
204
+ onLoopParams?: any[] | undefined;
205
+ onRepeat?: Phaser.Types.Tweens.TweenOnRepeatCallback | undefined;
206
+ onRepeatParams?: any[] | undefined;
207
+ onStart?: Phaser.Types.Tweens.TweenOnStartCallback | undefined;
208
+ onStartParams?: any[] | undefined;
209
+ onStop?: Phaser.Types.Tweens.TweenOnStopCallback | undefined;
210
+ onStopParams?: any[] | undefined;
211
+ onUpdate?: Phaser.Types.Tweens.TweenOnUpdateCallback | undefined;
212
+ onUpdateParams?: any[] | undefined;
213
+ onYoyo?: Phaser.Types.Tweens.TweenOnYoyoCallback | undefined;
214
+ onYoyoParams?: any[] | undefined;
215
+ onActive?: Phaser.Types.Tweens.TweenOnActiveCallback | undefined;
216
+ onActiveParams?: any[] | undefined;
217
+ onPause?: Phaser.Types.Tweens.TweenOnPauseCallback | undefined;
218
+ onPauseParams?: any[] | undefined;
219
+ onResume?: Phaser.Types.Tweens.TweenOnResumeCallback | undefined;
220
+ onResumeParams?: any[] | undefined;
221
+ persist?: boolean | undefined;
222
+ interpolation?: (string | Function) | undefined;
223
+ } | undefined) => any) | undefined;
224
+ "onUpdate:tweenchain"?: ((args_0?: {
225
+ [x: string]: any;
226
+ delay?: (number | Function) | undefined;
227
+ duration?: number | undefined;
228
+ ease?: (string | Function) | undefined;
229
+ easeParams?: any[] | undefined;
230
+ hold?: number | undefined;
231
+ repeat?: number | undefined;
232
+ repeatDelay?: number | undefined;
233
+ yoyo?: boolean | undefined;
234
+ flipX?: boolean | undefined;
235
+ flipY?: boolean | undefined;
236
+ completeDelay?: (string | number | Function | object | any[]) | undefined;
237
+ loop?: (string | number | Function | object | any[]) | undefined;
238
+ loopDelay?: (string | number | Function | object | any[]) | undefined;
239
+ paused?: boolean | undefined;
240
+ props?: {
241
+ [key: string]: (number | string | Phaser.Types.Tweens.GetEndCallback | Phaser.Types.Tweens.TweenPropConfig);
242
+ } | undefined;
243
+ callbackScope?: any;
244
+ onComplete?: Phaser.Types.Tweens.TweenOnCompleteCallback | undefined;
245
+ onCompleteParams?: any[] | undefined;
246
+ onLoop?: Phaser.Types.Tweens.TweenOnLoopCallback | undefined;
247
+ onLoopParams?: any[] | undefined;
248
+ onRepeat?: Phaser.Types.Tweens.TweenOnRepeatCallback | undefined;
249
+ onRepeatParams?: any[] | undefined;
250
+ onStart?: Phaser.Types.Tweens.TweenOnStartCallback | undefined;
251
+ onStartParams?: any[] | undefined;
252
+ onStop?: Phaser.Types.Tweens.TweenOnStopCallback | undefined;
253
+ onStopParams?: any[] | undefined;
254
+ onUpdate?: Phaser.Types.Tweens.TweenOnUpdateCallback | undefined;
255
+ onUpdateParams?: any[] | undefined;
256
+ onYoyo?: Phaser.Types.Tweens.TweenOnYoyoCallback | undefined;
257
+ onYoyoParams?: any[] | undefined;
258
+ onActive?: Phaser.Types.Tweens.TweenOnActiveCallback | undefined;
259
+ onActiveParams?: any[] | undefined;
260
+ onPause?: Phaser.Types.Tweens.TweenOnPauseCallback | undefined;
261
+ onPauseParams?: any[] | undefined;
262
+ onResume?: Phaser.Types.Tweens.TweenOnResumeCallback | undefined;
263
+ onResumeParams?: any[] | undefined;
264
+ persist?: boolean | undefined;
265
+ interpolation?: (string | Function) | undefined;
266
+ }[] | undefined) => any) | undefined;
267
+ "onUpdate:alpha"?: ((args_0?: number | undefined) => any) | undefined;
268
+ "onUpdate:blendMode"?: ((args_0?: string | number | Phaser.BlendModes | undefined) => any) | undefined;
269
+ "onUpdate:mask"?: ((args_0?: Phaser.Display.Masks.GeometryMask | undefined) => any) | undefined;
270
+ "onUpdate:customRenderNodes"?: ((args_0?: object | undefined) => any) | undefined;
271
+ "onUpdate:defaultRenderNodes"?: ((args_0?: object | undefined) => any) | undefined;
272
+ "onUpdate:renderNodeData"?: ((args_0?: object | undefined) => any) | undefined;
273
+ "onUpdate:fillAlpha"?: ((args_0?: number | undefined) => any) | undefined;
274
+ "onUpdate:fillColor"?: ((args_0?: number | undefined) => any) | undefined;
275
+ "onUpdate:strokeStyle"?: ((args_0?: [lineWidth?: number | undefined, color?: number | undefined, alpha?: number | undefined] | undefined) => any) | undefined;
276
+ "onUpdate:points"?: ((args_0?: string | number[] | Phaser.Types.Math.Vector2Like[] | undefined) => any) | undefined;
277
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
278
+ declare const _default: typeof __VLS_export;
279
+ export default _default;