safex-webgl 1.0.10 → 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.
Files changed (59) hide show
  1. package/dist/actions/ActionEase.d.ts +1298 -0
  2. package/dist/actions/ActionEase.d.ts.map +1 -0
  3. package/dist/actions/ActionEase.js +2767 -0
  4. package/dist/actions/DelayTime.js.map +1 -1
  5. package/dist/camera/Camera.d.ts +17 -0
  6. package/dist/camera/Camera.d.ts.map +1 -0
  7. package/dist/camera/Camera.js +63 -0
  8. package/dist/camera/Camera.js.map +1 -0
  9. package/dist/camera/CameraFlag.d.ts +12 -0
  10. package/dist/camera/CameraFlag.d.ts.map +1 -0
  11. package/dist/camera/CameraFlag.js +13 -0
  12. package/dist/camera/CameraFlag.js.map +1 -0
  13. package/dist/camera/index.d.ts +3 -0
  14. package/dist/camera/index.d.ts.map +1 -0
  15. package/dist/camera/index.js +3 -0
  16. package/dist/camera/index.js.map +1 -0
  17. package/dist/core/Director.d.ts +1 -1
  18. package/dist/core/Director.d.ts.map +1 -1
  19. package/dist/core/Director.js +11 -7
  20. package/dist/core/Director.js.map +1 -1
  21. package/dist/core/DirectorWebGL.js +10 -0
  22. package/dist/core/base-nodes/Node.d.ts +4 -4
  23. package/dist/core/base-nodes/Node.d.ts.map +1 -1
  24. package/dist/core/base-nodes/Node.js +20 -8
  25. package/dist/core/base-nodes/Node.js.map +1 -1
  26. package/dist/core/kazmath/gl/matrix.d.ts.map +1 -1
  27. package/dist/core/kazmath/gl/matrix.js +9 -3
  28. package/dist/core/kazmath/gl/matrix.js.map +1 -1
  29. package/dist/core/labelttf/LabelTTFCacheRenderCmd.d.ts +5 -0
  30. package/dist/core/labelttf/LabelTTFCacheRenderCmd.d.ts.map +1 -0
  31. package/dist/core/labelttf/LabelTTFCacheRenderCmd.js +67 -0
  32. package/dist/core/labelttf/LabelTTFRenderCmd.d.ts +2 -0
  33. package/dist/core/labelttf/LabelTTFRenderCmd.d.ts.map +1 -0
  34. package/dist/core/labelttf/LabelTTFRenderCmd.js +305 -0
  35. package/dist/core/renderer/RendererWebGL.d.ts +4 -0
  36. package/dist/core/renderer/RendererWebGL.d.ts.map +1 -1
  37. package/dist/core/renderer/RendererWebGL.js +12 -0
  38. package/dist/core/renderer/RendererWebGL.js.map +1 -1
  39. package/dist/core/scenes/Scene.d.ts +9 -0
  40. package/dist/core/scenes/Scene.d.ts.map +1 -1
  41. package/dist/core/scenes/Scene.js +37 -0
  42. package/dist/core/scenes/Scene.js.map +1 -1
  43. package/dist/helper/loader.js.map +1 -1
  44. package/dist/motion-streak/index.d.ts.map +1 -1
  45. package/dist/motion-streak/index.js.map +1 -1
  46. package/dist/particle/ParticleExamples.d.ts +27 -0
  47. package/dist/particle/ParticleExamples.d.ts.map +1 -0
  48. package/dist/particle/ParticleExamples.js +839 -0
  49. package/dist/render-texture/index.d.ts.map +1 -1
  50. package/dist/render-texture/index.js.map +1 -1
  51. package/dist/textures/WebGLTextureAtlas.js +5 -0
  52. package/dist/ui/base/ProtectedNode.js +3 -5
  53. package/dist/ui/base/ProtectedNode.js.map +1 -1
  54. package/dist/ui/base/ProtectedNodeRenderCmd.d.ts +6 -0
  55. package/dist/ui/base/ProtectedNodeRenderCmd.d.ts.map +1 -0
  56. package/dist/ui/base/ProtectedNodeRenderCmd.js +110 -0
  57. package/dist/ui/layout/UILayoutWebGLRenderCmd.d.ts +3 -3
  58. package/dist/ui/layout/UILayoutWebGLRenderCmd.d.ts.map +1 -1
  59. package/package.json +1 -1
@@ -0,0 +1,1298 @@
1
+ export declare const ActionEase: any;
2
+ /**
3
+ * creates the action of ActionEase
4
+ *
5
+ * @param {ActionInterval} action
6
+ * @return {ActionEase}
7
+ * @example
8
+ * // example
9
+ * var moveEase = actionEase(action);
10
+ */
11
+ export declare const actionEase: (action: any) => any;
12
+ /**
13
+ * Base class for Easing actions with rate parameters
14
+ *
15
+ * @class
16
+ * @extends ActionEase
17
+ * @param {ActionInterval} action
18
+ * @param {Number} rate
19
+ *
20
+ * @deprecated since v3.0 please easeRateAction(action, 3.0);
21
+ *
22
+ * @example
23
+ * //The old usage
24
+ * EaseRateAction.create(action, 3.0);
25
+ * //The new usage
26
+ * var moveEaseRateAction = easeRateAction(action, 3.0);
27
+ */
28
+ export declare const EaseRateAction: any;
29
+ /**
30
+ * Creates the action with the inner action and the rate parameter.
31
+ *
32
+ * @param {ActionInterval} action
33
+ * @param {Number} rate
34
+ * @return {EaseRateAction}
35
+ * @example
36
+ * // example
37
+ * var moveEaseRateAction = easeRateAction(action, 3.0);
38
+ */
39
+ export declare const easeRateAction: (action: any, rate: any) => any;
40
+ /**
41
+ * EaseIn action with a rate. From slow to fast.
42
+ *
43
+ * @class
44
+ * @extends EaseRateAction
45
+ *
46
+ * @deprecated since v3.0 please use action.easing(easeIn(3));
47
+ *
48
+ * @example
49
+ * //The old usage
50
+ * EaseIn.create(action, 3);
51
+ * //The new usage
52
+ * action.easing(easeIn(3.0));
53
+ */
54
+ export declare const EaseIn: any;
55
+ /**
56
+ * Creates the action easing object with the rate parameter. <br />
57
+ * From slow to fast.
58
+ *
59
+ * @function
60
+ * @param {Number} rate
61
+ * @return {Object}
62
+ * @example
63
+ * // example
64
+ * action.easing(easeIn(3.0));
65
+ */
66
+ export declare const easeIn: (rate: any) => {
67
+ _rate: any;
68
+ easing: (dt: any) => number;
69
+ reverse: () => /*elided*/ any;
70
+ };
71
+ /**
72
+ * EaseOut action with a rate. From fast to slow.
73
+ *
74
+ * @class
75
+ * @extends EaseRateAction
76
+ *
77
+ * @deprecated since v3.0 please use action.easing(easeOut(3))
78
+ *
79
+ * @example
80
+ * //The old usage
81
+ * EaseOut.create(action, 3);
82
+ * //The new usage
83
+ * action.easing(easeOut(3.0));
84
+ */
85
+ export declare const EaseOut: any;
86
+ /**
87
+ * Creates the action easing object with the rate parameter. <br />
88
+ * From fast to slow.
89
+ *
90
+ * @function
91
+ * @param {Number} rate
92
+ * @return {Object}
93
+ * @example
94
+ * // example
95
+ * action.easing(easeOut(3.0));
96
+ */
97
+ export declare const easeOut: (rate: any) => {
98
+ _rate: any;
99
+ easing: (dt: any) => number;
100
+ reverse: () => /*elided*/ any;
101
+ };
102
+ /**
103
+ * EaseInOut action with a rate. <br />
104
+ * Slow to fast then to slow.
105
+ * @class
106
+ * @extends EaseRateAction
107
+ *
108
+ * @deprecated since v3.0 please use action.easing(easeInOut(3.0))
109
+ *
110
+ * @example
111
+ * //The old usage
112
+ * EaseInOut.create(action, 3);
113
+ * //The new usage
114
+ * action.easing(easeInOut(3.0));
115
+ */
116
+ export declare const EaseInOut: any;
117
+ /**
118
+ * Creates the action easing object with the rate parameter. <br />
119
+ * Slow to fast then to slow.
120
+ * @function
121
+ * @param {Number} rate
122
+ * @return {Object}
123
+ *
124
+ * @example
125
+ * //The new usage
126
+ * action.easing(easeInOut(3.0));
127
+ */
128
+ export declare const easeInOut: (rate: any) => {
129
+ _rate: any;
130
+ easing: (dt: any) => number;
131
+ reverse: () => /*elided*/ any;
132
+ };
133
+ /**
134
+ * Ease Exponential In. Slow to Fast. <br />
135
+ * Reference easeInExpo: <br />
136
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
137
+ * @class
138
+ * @extends ActionEase
139
+ *
140
+ * @deprecated since v3.0 please action.easing(easeExponentialIn())
141
+ *
142
+ * @example
143
+ * //The old usage
144
+ * EaseExponentialIn.create(action);
145
+ * //The new usage
146
+ * action.easing(easeExponentialIn());
147
+ */
148
+ export declare const EaseExponentialIn: any;
149
+ export declare const _easeExponentialInObj: {
150
+ easing: (dt: any) => number;
151
+ reverse: () => {
152
+ easing: (dt: any) => number;
153
+ reverse: () => /*elided*/ any;
154
+ };
155
+ };
156
+ /**
157
+ * Creates the action easing object with the rate parameter. <br />
158
+ * Reference easeInExpo: <br />
159
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
160
+ * @function
161
+ * @return {Object}
162
+ * @example
163
+ * // example
164
+ * action.easing(easeExponentialIn());
165
+ */
166
+ export declare const easeExponentialIn: () => {
167
+ easing: (dt: any) => number;
168
+ reverse: () => {
169
+ easing: (dt: any) => number;
170
+ reverse: () => /*elided*/ any;
171
+ };
172
+ };
173
+ /**
174
+ * Ease Exponential Out. <br />
175
+ * Reference easeOutExpo: <br />
176
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
177
+ * @class
178
+ * @extends ActionEase
179
+ *
180
+ * @deprecated since v3.0 please use action.easing(easeExponentialOut())
181
+ *
182
+ * @example
183
+ * //The old usage
184
+ * EaseExponentialOut.create(action);
185
+ * //The new usage
186
+ * action.easing(easeExponentialOut());
187
+ */
188
+ export declare const EaseExponentialOut: any;
189
+ export declare const _easeExponentialOutObj: {
190
+ easing: (dt: any) => number;
191
+ reverse: () => {
192
+ easing: (dt: any) => number;
193
+ reverse: () => /*elided*/ any;
194
+ };
195
+ };
196
+ /**
197
+ * creates the action easing object. <br />
198
+ * Reference easeOutExpo: <br />
199
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
200
+ *
201
+ * @return {Object}
202
+ * @example
203
+ * // example
204
+ * action.easing(easeExponentialOut());
205
+ */
206
+ export declare const easeExponentialOut: () => {
207
+ easing: (dt: any) => number;
208
+ reverse: () => {
209
+ easing: (dt: any) => number;
210
+ reverse: () => /*elided*/ any;
211
+ };
212
+ };
213
+ /**
214
+ * Ease Exponential InOut. <br />
215
+ * Reference easeInOutExpo: <br />
216
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
217
+ *
218
+ * @class
219
+ * @extends ActionEase
220
+ *
221
+ * @deprecated since v3.0 please use action.easing(easeExponentialInOut)
222
+ *
223
+ * @example
224
+ * //The old usage
225
+ * EaseExponentialInOut.create(action);
226
+ * //The new usage
227
+ * action.easing(easeExponentialInOut());
228
+ */
229
+ export declare const EaseExponentialInOut: any;
230
+ export declare const _easeExponentialInOutObj: {
231
+ easing: (dt: any) => any;
232
+ reverse: () => /*elided*/ any;
233
+ };
234
+ /**
235
+ * creates an EaseExponentialInOut action easing object. <br />
236
+ * Reference easeInOutExpo: <br />
237
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
238
+ * @function
239
+ * @return {Object}
240
+ * @example
241
+ * // example
242
+ * action.easing(easeExponentialInOut());
243
+ */
244
+ export declare const easeExponentialInOut: () => {
245
+ easing: (dt: any) => any;
246
+ reverse: () => /*elided*/ any;
247
+ };
248
+ /**
249
+ * Ease Sine In. <br />
250
+ * Reference easeInSine: <br />
251
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
252
+ * @class
253
+ * @extends ActionEase
254
+ *
255
+ * @deprecated since v3.0 please use action.easing(easeSineIn())
256
+ *
257
+ * @example
258
+ * //The old usage
259
+ * EaseSineIn.create(action);
260
+ * //The new usage
261
+ * action.easing(easeSineIn());
262
+ */
263
+ export declare const EaseSineIn: any;
264
+ export declare const _easeSineInObj: {
265
+ easing: (dt: any) => any;
266
+ reverse: () => {
267
+ easing: (dt: any) => any;
268
+ reverse: () => /*elided*/ any;
269
+ };
270
+ };
271
+ /**
272
+ * creates an EaseSineIn action. <br />
273
+ * Reference easeInSine: <br />
274
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
275
+ * @function
276
+ * @return {Object}
277
+ * @example
278
+ * // example
279
+ * action.easing(easeSineIn());
280
+ */
281
+ export declare const easeSineIn: () => {
282
+ easing: (dt: any) => any;
283
+ reverse: () => {
284
+ easing: (dt: any) => any;
285
+ reverse: () => /*elided*/ any;
286
+ };
287
+ };
288
+ /**
289
+ * Ease Sine Out. <br />
290
+ * Reference easeOutSine: <br />
291
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
292
+ * @class
293
+ * @extends ActionEase
294
+ *
295
+ * @deprecated since v3.0 please use action.easing(easeSineOut())
296
+ *
297
+ * @example
298
+ * //The old usage
299
+ * EaseSineOut.create(action);
300
+ * //The new usage
301
+ * action.easing(easeSineOut());
302
+ */
303
+ export declare const EaseSineOut: any;
304
+ export declare const _easeSineOutObj: {
305
+ easing: (dt: any) => any;
306
+ reverse: () => {
307
+ easing: (dt: any) => any;
308
+ reverse: () => /*elided*/ any;
309
+ };
310
+ };
311
+ /**
312
+ * Creates an EaseSineOut action easing object. <br />
313
+ * Reference easeOutSine: <br />
314
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
315
+ * @function
316
+ * @return {Object}
317
+ * @example
318
+ * // example
319
+ * action.easing(easeSineOut());
320
+ */
321
+ export declare const easeSineOut: () => {
322
+ easing: (dt: any) => any;
323
+ reverse: () => {
324
+ easing: (dt: any) => any;
325
+ reverse: () => /*elided*/ any;
326
+ };
327
+ };
328
+ /**
329
+ * Ease Sine InOut. <br />
330
+ * Reference easeInOutSine: <br />
331
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
332
+ * @class
333
+ * @extends ActionEase
334
+ *
335
+ * @deprecated since v3.0 please use action.easing(easeSineInOut())
336
+ *
337
+ * @example
338
+ * //The old usage
339
+ * EaseSineInOut.create(action);
340
+ * //The new usage
341
+ * action.easing(easeSineInOut());
342
+ */
343
+ export declare const EaseSineInOut: any;
344
+ export declare const _easeSineInOutObj: {
345
+ easing: (dt: any) => any;
346
+ reverse: () => /*elided*/ any;
347
+ };
348
+ /**
349
+ * creates the action easing object. <br />
350
+ * Reference easeInOutSine: <br />
351
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
352
+ * @return {Object}
353
+ * @example
354
+ * // example
355
+ * action.easing(easeSineInOut());
356
+ */
357
+ export declare const easeSineInOut: () => {
358
+ easing: (dt: any) => any;
359
+ reverse: () => /*elided*/ any;
360
+ };
361
+ /**
362
+ * Ease Elastic abstract class.
363
+ * @class
364
+ * @extends ActionEase
365
+ * @param {ActionInterval} action
366
+ * @param {Number} [period=0.3]
367
+ *
368
+ * @deprecated since v3.0 Does not recommend the use of the base object.
369
+ */
370
+ export declare const EaseElastic: any;
371
+ /**
372
+ * Ease Elastic In action. <br />
373
+ * Reference easeInElastic: <br />
374
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
375
+ * @warning This action doesn't use a bijective function. Actions like Sequence might have an unexpected result when used with this action.
376
+ * @class
377
+ * @extends EaseElastic
378
+ *
379
+ * @deprecated since v3.0 please use action.easing(easeElasticIn())
380
+ *
381
+ * @example
382
+ * //The old usage
383
+ * EaseElasticIn.create(action, period);
384
+ * //The new usage
385
+ * action.easing(easeElasticIn(period));
386
+ */
387
+ export declare const EaseElasticIn: any;
388
+ export declare const _easeElasticInObj: {
389
+ easing: (dt: any) => any;
390
+ reverse: () => {
391
+ easing: (dt: any) => any;
392
+ reverse: () => /*elided*/ any;
393
+ };
394
+ };
395
+ /**
396
+ * Creates the action easing obejct with the period in radians (default is 0.3). <br />
397
+ * Reference easeInElastic: <br />
398
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
399
+ * @function
400
+ * @param {Number} [period=0.3]
401
+ * @return {Object}
402
+ * @example
403
+ * // example
404
+ * action.easing(easeElasticIn(3.0));
405
+ */
406
+ export declare const easeElasticIn: (period: any) => {
407
+ easing: (dt: any) => any;
408
+ reverse: () => {
409
+ easing: (dt: any) => any;
410
+ reverse: () => /*elided*/ any;
411
+ };
412
+ } | {
413
+ _period: any;
414
+ easing: (dt: any) => any;
415
+ reverse: () => {
416
+ easing: (dt: any) => any;
417
+ reverse: () => {
418
+ easing: (dt: any) => any;
419
+ reverse: () => /*elided*/ any;
420
+ };
421
+ } | {
422
+ _period: any;
423
+ easing: (dt: any) => any;
424
+ reverse: () => {
425
+ easing: (dt: any) => any;
426
+ reverse: () => {
427
+ easing: (dt: any) => any;
428
+ reverse: () => /*elided*/ any;
429
+ };
430
+ } | /*elided*/ any;
431
+ };
432
+ };
433
+ /**
434
+ * Ease Elastic Out action. <br />
435
+ * Reference easeOutElastic: <br />
436
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
437
+ * @warning This action doesn't use a bijective function. Actions like Sequence might have an unexpected result when used with this action.
438
+ * @class
439
+ * @extends EaseElastic
440
+ *
441
+ * @deprecated since v3.0 <br /> Please use action.easing(easeElasticOut(period))
442
+ *
443
+ * @example
444
+ * //The old usage
445
+ * EaseElasticOut.create(action, period);
446
+ * //The new usage
447
+ * action.easing(easeElasticOut(period));
448
+ */
449
+ export declare const EaseElasticOut: any;
450
+ export declare const _easeElasticOutObj: {
451
+ easing: (dt: any) => any;
452
+ reverse: () => {
453
+ easing: (dt: any) => any;
454
+ reverse: () => /*elided*/ any;
455
+ };
456
+ };
457
+ /**
458
+ * Creates the action easing object with the period in radians (default is 0.3). <br />
459
+ * Reference easeOutElastic: <br />
460
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
461
+ * @function
462
+ * @param {Number} [period=0.3]
463
+ * @return {Object}
464
+ * @example
465
+ * // example
466
+ * action.easing(easeElasticOut(3.0));
467
+ */
468
+ export declare const easeElasticOut: (period: any) => {
469
+ easing: (dt: any) => any;
470
+ reverse: () => {
471
+ easing: (dt: any) => any;
472
+ reverse: () => /*elided*/ any;
473
+ };
474
+ } | {
475
+ _period: any;
476
+ easing: (dt: any) => any;
477
+ reverse: () => {
478
+ easing: (dt: any) => any;
479
+ reverse: () => {
480
+ easing: (dt: any) => any;
481
+ reverse: () => /*elided*/ any;
482
+ };
483
+ } | {
484
+ _period: any;
485
+ easing: (dt: any) => any;
486
+ reverse: () => {
487
+ easing: (dt: any) => any;
488
+ reverse: () => {
489
+ easing: (dt: any) => any;
490
+ reverse: () => /*elided*/ any;
491
+ };
492
+ } | /*elided*/ any;
493
+ };
494
+ };
495
+ /**
496
+ * Ease Elastic InOut action. <br />
497
+ * Reference easeInOutElastic: <br />
498
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
499
+ * @warning This action doesn't use a bijective function. Actions like Sequence might have an unexpected result when used with this action.
500
+ * @class
501
+ * @extends EaseElastic
502
+ *
503
+ * @deprecated since v3.0 please use action.easing(easeElasticInOut())
504
+ *
505
+ * @example
506
+ * //The old usage
507
+ * EaseElasticInOut.create(action, period);
508
+ * //The new usage
509
+ * action.easing(easeElasticInOut(period));
510
+ */
511
+ export declare const EaseElasticInOut: any;
512
+ /**
513
+ * Creates the action easing object with the period in radians (default is 0.3). <br />
514
+ * Reference easeInOutElastic: <br />
515
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
516
+ * @function
517
+ * @param {Number} [period=0.3]
518
+ * @return {Object}
519
+ * @example
520
+ * // example
521
+ * action.easing(easeElasticInOut(3.0));
522
+ */
523
+ export declare const easeElasticInOut: (period: any) => {
524
+ _period: any;
525
+ easing: (dt: any) => number;
526
+ reverse: () => /*elided*/ any;
527
+ };
528
+ /**
529
+ * EaseBounce abstract class.
530
+ *
531
+ * @deprecated since v3.0 Does not recommend the use of the base object.
532
+ *
533
+ * @class
534
+ * @extends ActionEase
535
+ */
536
+ export declare const EaseBounce: any;
537
+ /**
538
+ * EaseBounceIn action. <br />
539
+ * Eased bounce effect at the beginning.
540
+ * @warning This action doesn't use a bijective function. Actions like Sequence might have an unexpected result when used with this action.
541
+ * @class
542
+ * @extends EaseBounce
543
+ *
544
+ * @deprecated since v3.0 please use action.easing(easeBounceIn())
545
+ *
546
+ * @example
547
+ * //The old usage
548
+ * EaseBounceIn.create(action);
549
+ * //The new usage
550
+ * action.easing(easeBounceIn());
551
+ */
552
+ export declare const EaseBounceIn: any;
553
+ export declare const _bounceTime: (time1: any) => number;
554
+ export declare const _easeBounceInObj: {
555
+ easing: (dt: any) => number;
556
+ reverse: () => {
557
+ easing: (dt: any) => number;
558
+ reverse: () => /*elided*/ any;
559
+ };
560
+ };
561
+ /**
562
+ * Creates the action easing object. <br />
563
+ * Eased bounce effect at the beginning.
564
+ * @function
565
+ * @return {Object}
566
+ * @example
567
+ * // example
568
+ * action.easing(easeBounceIn());
569
+ */
570
+ export declare const easeBounceIn: () => {
571
+ easing: (dt: any) => number;
572
+ reverse: () => {
573
+ easing: (dt: any) => number;
574
+ reverse: () => /*elided*/ any;
575
+ };
576
+ };
577
+ /**
578
+ * EaseBounceOut action. <br />
579
+ * Eased bounce effect at the ending.
580
+ * @warning This action doesn't use a bijective function. Actions like Sequence might have an unexpected result when used with this action.
581
+ * @class
582
+ * @extends EaseBounce
583
+ *
584
+ * @deprecated since v3.0 please use action.easing(easeBounceOut())
585
+ *
586
+ * @example
587
+ * //The old usage
588
+ * EaseBounceOut.create(action);
589
+ * //The new usage
590
+ * action.easing(easeBounceOut());
591
+ */
592
+ export declare const EaseBounceOut: any;
593
+ export declare const _easeBounceOutObj: {
594
+ easing: (dt: any) => number;
595
+ reverse: () => {
596
+ easing: (dt: any) => number;
597
+ reverse: () => /*elided*/ any;
598
+ };
599
+ };
600
+ /**
601
+ * Creates the action easing object. <br />
602
+ * Eased bounce effect at the ending.
603
+ * @function
604
+ * @return {Object}
605
+ * @example
606
+ * // example
607
+ * action.easing(easeBounceOut());
608
+ */
609
+ export declare const easeBounceOut: () => {
610
+ easing: (dt: any) => number;
611
+ reverse: () => {
612
+ easing: (dt: any) => number;
613
+ reverse: () => /*elided*/ any;
614
+ };
615
+ };
616
+ /**
617
+ * EaseBounceInOut action. <br />
618
+ * Eased bounce effect at the beginning and ending.
619
+ * @warning This action doesn't use a bijective function. Actions like Sequence might have an unexpected result when used with this action.
620
+ * @class
621
+ * @extends EaseBounce
622
+ *
623
+ * @deprecated since v3.0 <br /> Please use acton.easing(easeBounceInOut())
624
+ *
625
+ * @example
626
+ * //The old usage
627
+ * EaseBounceInOut.create(action);
628
+ * //The new usage
629
+ * action.easing(easeBounceInOut());
630
+ */
631
+ export declare const EaseBounceInOut: any;
632
+ export declare const _easeBounceInOutObj: {
633
+ easing: (time1: any) => any;
634
+ reverse: () => /*elided*/ any;
635
+ };
636
+ /**
637
+ * Creates the action easing object. <br />
638
+ * Eased bounce effect at the beginning and ending.
639
+ * @function
640
+ * @return {Object}
641
+ * @example
642
+ * // example
643
+ * action.easing(easeBounceInOut());
644
+ */
645
+ export declare const easeBounceInOut: () => {
646
+ easing: (time1: any) => any;
647
+ reverse: () => /*elided*/ any;
648
+ };
649
+ /**
650
+ * EaseBackIn action. <br />
651
+ * In the opposite direction to move slowly, and then accelerated to the right direction.
652
+ * @warning This action doesn't use a bijective function. Actions like Sequence might have an unexpected result when used with this action.
653
+ * @class
654
+ * @extends ActionEase
655
+ *
656
+ * @deprecated since v3.0 please use action.easing(easeBackIn())
657
+ *
658
+ * @example
659
+ * //The old usage
660
+ * EaseBackIn.create(action);
661
+ * //The new usage
662
+ * action.easing(easeBackIn());
663
+ */
664
+ export declare const EaseBackIn: any;
665
+ export declare const _easeBackInObj: {
666
+ easing: (time1: any) => any;
667
+ reverse: () => {
668
+ easing: (time1: any) => number;
669
+ reverse: () => /*elided*/ any;
670
+ };
671
+ };
672
+ /**
673
+ * Creates the action easing object. <br />
674
+ * In the opposite direction to move slowly, and then accelerated to the right direction.
675
+ * @function
676
+ * @return {Object}
677
+ * @example
678
+ * // example
679
+ * action.easing(easeBackIn());
680
+ */
681
+ export declare const easeBackIn: () => {
682
+ easing: (time1: any) => any;
683
+ reverse: () => {
684
+ easing: (time1: any) => number;
685
+ reverse: () => /*elided*/ any;
686
+ };
687
+ };
688
+ /**
689
+ * EaseBackOut action. <br />
690
+ * Fast moving more than the finish, and then slowly back to the finish.
691
+ * @warning This action doesn't use a bijective function. Actions like Sequence might have an unexpected result when used with this action.
692
+ * @class
693
+ * @extends ActionEase
694
+ *
695
+ * @deprecated since v3.0 please use action.easing(easeBackOut());
696
+ *
697
+ * @example
698
+ * //The old usage
699
+ * EaseBackOut.create(action);
700
+ * //The new usage
701
+ * action.easing(easeBackOut());
702
+ */
703
+ export declare const EaseBackOut: any;
704
+ export declare const _easeBackOutObj: {
705
+ easing: (time1: any) => number;
706
+ reverse: () => {
707
+ easing: (time1: any) => any;
708
+ reverse: () => /*elided*/ any;
709
+ };
710
+ };
711
+ /**
712
+ * Creates the action easing object. <br />
713
+ * Fast moving more than the finish, and then slowly back to the finish.
714
+ * @function
715
+ * @return {Object}
716
+ * @example
717
+ * // example
718
+ * action.easing(easeBackOut());
719
+ */
720
+ export declare const easeBackOut: () => {
721
+ easing: (time1: any) => number;
722
+ reverse: () => {
723
+ easing: (time1: any) => any;
724
+ reverse: () => /*elided*/ any;
725
+ };
726
+ };
727
+ /**
728
+ * EaseBackInOut action. <br />
729
+ * Beginning of EaseBackIn. Ending of EaseBackOut.
730
+ * @warning This action doesn't use a bijective function. Actions like Sequence might have an unexpected result when used with this action.
731
+ * @class
732
+ * @extends ActionEase
733
+ *
734
+ * @deprecated since v3.0 <br /> Please use action.easing(easeBackInOut())
735
+ *
736
+ * @example
737
+ * //The old usage
738
+ * EaseBackInOut.create(action);
739
+ * //The new usage
740
+ * action.easing(easeBackInOut());
741
+ */
742
+ export declare const EaseBackInOut: any;
743
+ export declare const _easeBackInOutObj: {
744
+ easing: (time1: any) => number;
745
+ reverse: () => /*elided*/ any;
746
+ };
747
+ /**
748
+ * Creates the action easing object. <br />
749
+ * Beginning of EaseBackIn. Ending of EaseBackOut.
750
+ * @function
751
+ * @return {Object}
752
+ * @example
753
+ * // example
754
+ * action.easing(easeBackInOut());
755
+ */
756
+ export declare const easeBackInOut: () => {
757
+ easing: (time1: any) => number;
758
+ reverse: () => /*elided*/ any;
759
+ };
760
+ /**
761
+ * EaseBezierAction action. <br />
762
+ * Manually set a 4 order Bessel curve. <br />
763
+ * According to the set point, calculate the trajectory.
764
+ * @class
765
+ * @extends ActionEase
766
+ * @param {Action} action
767
+ *
768
+ * @deprecated since v3.0 <br /> Please use action.easing(easeBezierAction())
769
+ *
770
+ * @example
771
+ * //The old usage
772
+ * var action = EaseBezierAction.create(action);
773
+ * action.setBezierParamer(0.5, 0.5, 1.0, 1.0);
774
+ * //The new usage
775
+ * action.easing(easeBezierAction(0.5, 0.5, 1.0, 1.0));
776
+ */
777
+ export declare const EaseBezierAction: any;
778
+ /**
779
+ * Creates the action easing object. <br />
780
+ * Into the 4 reference point. <br />
781
+ * To calculate the motion curve.
782
+ * @param {Number} p0 The first bezier parameter
783
+ * @param {Number} p1 The second bezier parameter
784
+ * @param {Number} p2 The third bezier parameter
785
+ * @param {Number} p3 The fourth bezier parameter
786
+ * @returns {Object}
787
+ * @example
788
+ * // example
789
+ * action.easing(easeBezierAction(0.5, 0.5, 1.0, 1.0));
790
+ */
791
+ export declare const easeBezierAction: (p0: any, p1: any, p2: any, p3: any) => {
792
+ easing: (time: any) => any;
793
+ reverse: () => /*elided*/ any;
794
+ };
795
+ /**
796
+ * EaseQuadraticActionIn action. <br />
797
+ * Reference easeInQuad: <br />
798
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
799
+ * @class
800
+ * @extends ActionEase
801
+ *
802
+ * @deprecated since v3.0 <br /> Please use action.easing(easeQuadraticAction())
803
+ *
804
+ * @example
805
+ * //The old usage
806
+ * EaseQuadraticActionIn.create(action);
807
+ * //The new usage
808
+ * action.easing(easeQuadraticActionIn());
809
+ */
810
+ export declare const EaseQuadraticActionIn: any;
811
+ export declare const _easeQuadraticActionIn: {
812
+ easing: any;
813
+ reverse: () => /*elided*/ any;
814
+ };
815
+ /**
816
+ * Creates the action easing object. <br />
817
+ * Reference easeInQuad: <br />
818
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
819
+ * @returns {Object}
820
+ * @example
821
+ * //example
822
+ * action.easing(easeQuadraticActionIn());
823
+ */
824
+ export declare const easeQuadraticActionIn: () => {
825
+ easing: any;
826
+ reverse: () => /*elided*/ any;
827
+ };
828
+ /**
829
+ * EaseQuadraticActionIn action. <br />
830
+ * Reference easeOutQuad: <br />
831
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
832
+ * @class
833
+ * @extends ActionEase
834
+ *
835
+ * @deprecated since v3.0 <br /> Please use action.easing(easeQuadraticActionOut())
836
+ *
837
+ * @example
838
+ * //The old usage
839
+ * EaseQuadraticActionOut.create(action);
840
+ * //The new usage
841
+ * action.easing(easeQuadraticActionOut());
842
+ */
843
+ export declare const EaseQuadraticActionOut: any;
844
+ export declare const _easeQuadraticActionOut: {
845
+ easing: any;
846
+ reverse: () => /*elided*/ any;
847
+ };
848
+ /**
849
+ * Creates the action easing object. <br />
850
+ * Reference easeOutQuad: <br />
851
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
852
+ * @function
853
+ * @returns {Object}
854
+ * @example
855
+ * //example
856
+ * action.easing(easeQuadraticActionOut());
857
+ */
858
+ export declare const easeQuadraticActionOut: () => {
859
+ easing: any;
860
+ reverse: () => /*elided*/ any;
861
+ };
862
+ /**
863
+ * EaseQuadraticActionInOut action. <br />
864
+ * Reference easeInOutQuad: <br />
865
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
866
+ * @class
867
+ * @extends ActionEase
868
+ *
869
+ * @deprecated since v3.0 <br /> Please use action.easing(easeQuadraticActionInOut())
870
+ *
871
+ * @example
872
+ * //The old usage
873
+ * EaseQuadraticActionInOut.create(action);
874
+ * //The new usage
875
+ * action.easing(easeQuadraticActionInOut());
876
+ */
877
+ export declare const EaseQuadraticActionInOut: any;
878
+ export declare const _easeQuadraticActionInOut: {
879
+ easing: any;
880
+ reverse: () => /*elided*/ any;
881
+ };
882
+ /**
883
+ * Creates the action easing object. <br />
884
+ * Reference easeInOutQuad: <br />
885
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
886
+ * @function
887
+ * @returns {Object}
888
+ * @example
889
+ * //example
890
+ * action.easing(easeQuadraticActionInOut());
891
+ */
892
+ export declare const easeQuadraticActionInOut: () => {
893
+ easing: any;
894
+ reverse: () => /*elided*/ any;
895
+ };
896
+ /**
897
+ * EaseQuarticActionIn action. <br />
898
+ * Reference easeInQuart: <br />
899
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
900
+ * @class
901
+ * @extends ActionEase
902
+ *
903
+ * @deprecated since v3.0 <br /> Please use action.easing(easeQuarticActionIn());
904
+ *
905
+ * @example
906
+ * //The old usage
907
+ * EaseQuarticActionIn.create(action);
908
+ * //The new usage
909
+ * action.easing(easeQuarticActionIn());
910
+ */
911
+ export declare const EaseQuarticActionIn: any;
912
+ export declare const _easeQuarticActionIn: {
913
+ easing: any;
914
+ reverse: () => /*elided*/ any;
915
+ };
916
+ /**
917
+ * Creates the action easing object. <br />
918
+ * Reference easeIntQuart: <br />
919
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
920
+ * @function
921
+ * @returns {Object}
922
+ * @example
923
+ * //example
924
+ * action.easing(easeQuarticActionIn());
925
+ */
926
+ export declare const easeQuarticActionIn: () => {
927
+ easing: any;
928
+ reverse: () => /*elided*/ any;
929
+ };
930
+ /**
931
+ * EaseQuarticActionOut action. <br />
932
+ * Reference easeOutQuart: <br />
933
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
934
+ * @class
935
+ * @extends ActionEase
936
+ *
937
+ * @deprecated since v3.0 <br /> Please use action.easing(QuarticActionOut());
938
+ *
939
+ * @example
940
+ * //The old usage
941
+ * EaseQuarticActionOut.create(action);
942
+ * //The new usage
943
+ * action.easing(EaseQuarticActionOut());
944
+ */
945
+ export declare const EaseQuarticActionOut: any;
946
+ export declare const _easeQuarticActionOut: {
947
+ easing: any;
948
+ reverse: () => /*elided*/ any;
949
+ };
950
+ /**
951
+ * Creates the action easing object. <br />
952
+ * Reference easeOutQuart: <br />
953
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
954
+ * @function
955
+ * @returns {Object}
956
+ * @example
957
+ * //example
958
+ * action.easing(QuarticActionOut());
959
+ */
960
+ export declare const easeQuarticActionOut: () => {
961
+ easing: any;
962
+ reverse: () => /*elided*/ any;
963
+ };
964
+ /**
965
+ * EaseQuarticActionInOut action. <br />
966
+ * Reference easeInOutQuart: <br />
967
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
968
+ * @class
969
+ * @extends ActionEase
970
+ *
971
+ * @deprecated since v3.0 <br /> Please use action.easing(easeQuarticActionInOut());
972
+ *
973
+ * @example
974
+ * //The old usage
975
+ * EaseQuarticActionInOut.create(action);
976
+ * //The new usage
977
+ * action.easing(easeQuarticActionInOut());
978
+ */
979
+ export declare const EaseQuarticActionInOut: any;
980
+ export declare const _easeQuarticActionInOut: {
981
+ easing: any;
982
+ reverse: () => /*elided*/ any;
983
+ };
984
+ /**
985
+ * Creates the action easing object. <br />
986
+ * Reference easeInOutQuart: <br />
987
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
988
+ * @function
989
+ * @returns {Object}
990
+ */
991
+ export declare const easeQuarticActionInOut: () => {
992
+ easing: any;
993
+ reverse: () => /*elided*/ any;
994
+ };
995
+ /**
996
+ * EaseQuinticActionIn action. <br />
997
+ * Reference easeInQuint: <br />
998
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
999
+ * @class
1000
+ * @extends ActionEase
1001
+ *
1002
+ * @deprecated since v3.0 <br /> Please use action.easing(easeQuinticActionIn());
1003
+ *
1004
+ * @example
1005
+ * //The old usage
1006
+ * EaseQuinticActionIn.create(action);
1007
+ * //The new usage
1008
+ * action.easing(easeQuinticActionIn());
1009
+ */
1010
+ export declare const EaseQuinticActionIn: any;
1011
+ export declare const _easeQuinticActionIn: {
1012
+ easing: any;
1013
+ reverse: () => /*elided*/ any;
1014
+ };
1015
+ /**
1016
+ * Creates the action easing object. <br />
1017
+ * Reference easeInQuint: <br />
1018
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
1019
+ * @function
1020
+ * @returns {Object}
1021
+ * @example
1022
+ * //example
1023
+ * action.easing(easeQuinticActionIn());
1024
+ */
1025
+ export declare const easeQuinticActionIn: () => {
1026
+ easing: any;
1027
+ reverse: () => /*elided*/ any;
1028
+ };
1029
+ /**
1030
+ * EaseQuinticActionOut action. <br />
1031
+ * Reference easeQuint: <br />
1032
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
1033
+ * @class
1034
+ * @extends ActionEase
1035
+ *
1036
+ * @deprecated since v3.0 <br /> Please use action.easing(easeQuadraticActionOut());
1037
+ *
1038
+ * @example
1039
+ * //The old usage
1040
+ * EaseQuinticActionOut.create(action);
1041
+ * //The new usage
1042
+ * action.easing(easeQuadraticActionOut());
1043
+ */
1044
+ export declare const EaseQuinticActionOut: any;
1045
+ export declare const _easeQuinticActionOut: {
1046
+ easing: any;
1047
+ reverse: () => /*elided*/ any;
1048
+ };
1049
+ /**
1050
+ * Creates the action easing object. <br />
1051
+ * Reference easeOutQuint: <br />
1052
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
1053
+ * @function
1054
+ * @returns {Object}
1055
+ * @example
1056
+ * //example
1057
+ * action.easing(easeQuadraticActionOut());
1058
+ */
1059
+ export declare const easeQuinticActionOut: () => {
1060
+ easing: any;
1061
+ reverse: () => /*elided*/ any;
1062
+ };
1063
+ /**
1064
+ * EaseQuinticActionInOut action. <br />
1065
+ * Reference easeInOutQuint: <br />
1066
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
1067
+ * @class
1068
+ * @extends ActionEase
1069
+ *
1070
+ * @deprecated since v3.0 <br /> Please use action.easing(easeQuinticActionInOut());
1071
+ *
1072
+ * @example
1073
+ * //The old usage
1074
+ * EaseQuinticActionInOut.create(action);
1075
+ * //The new usage
1076
+ * action.easing(easeQuinticActionInOut());
1077
+ */
1078
+ export declare const EaseQuinticActionInOut: any;
1079
+ export declare const _easeQuinticActionInOut: {
1080
+ easing: any;
1081
+ reverse: () => /*elided*/ any;
1082
+ };
1083
+ /**
1084
+ * Creates the action easing object. <br />
1085
+ * Reference easeInOutQuint: <br />
1086
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
1087
+ * @function
1088
+ * @returns {Object}
1089
+ * @example
1090
+ * //example
1091
+ * action.easing(easeQuinticActionInOut());
1092
+ */
1093
+ export declare const easeQuinticActionInOut: () => {
1094
+ easing: any;
1095
+ reverse: () => /*elided*/ any;
1096
+ };
1097
+ /**
1098
+ * EaseCircleActionIn action. <br />
1099
+ * Reference easeInCirc: <br />
1100
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
1101
+ * @class
1102
+ * @extends ActionEase
1103
+ *
1104
+ * @deprecated since v3.0 <br /> Please use action.easing(easeCircleActionIn());
1105
+ *
1106
+ * @example
1107
+ * //The old usage
1108
+ * EaseCircleActionIn.create(action);
1109
+ * //The new usage
1110
+ * action.easing(easeCircleActionIn());
1111
+ */
1112
+ export declare const EaseCircleActionIn: any;
1113
+ export declare const _easeCircleActionIn: {
1114
+ easing: any;
1115
+ reverse: () => /*elided*/ any;
1116
+ };
1117
+ /**
1118
+ * Creates the action easing object. <br />
1119
+ * Reference easeInCirc: <br />
1120
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
1121
+ * @function
1122
+ * @returns {Object}
1123
+ * @example
1124
+ * //example
1125
+ * action.easing(easeCircleActionIn());
1126
+ */
1127
+ export declare const easeCircleActionIn: () => {
1128
+ easing: any;
1129
+ reverse: () => /*elided*/ any;
1130
+ };
1131
+ /**
1132
+ * EaseCircleActionOut action. <br />
1133
+ * Reference easeOutCirc: <br />
1134
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
1135
+ * @class
1136
+ * @extends ActionEase
1137
+ *
1138
+ * @deprecated since v3.0 <br /> Please use action.easing(easeCircleActionOut());
1139
+ *
1140
+ * @example
1141
+ * //The old usage
1142
+ * EaseCircleActionOut.create(action);
1143
+ * //The new usage
1144
+ * action.easing(easeCircleActionOut());
1145
+ */
1146
+ export declare const EaseCircleActionOut: any;
1147
+ export declare const _easeCircleActionOut: {
1148
+ easing: any;
1149
+ reverse: () => /*elided*/ any;
1150
+ };
1151
+ /**
1152
+ * Creates the action easing object. <br />
1153
+ * Reference easeOutCirc: <br />
1154
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
1155
+ * @function
1156
+ * @returns {Object}
1157
+ * @exampple
1158
+ * //example
1159
+ * actioneasing(easeCircleActionOut());
1160
+ */
1161
+ export declare const easeCircleActionOut: () => {
1162
+ easing: any;
1163
+ reverse: () => /*elided*/ any;
1164
+ };
1165
+ /**
1166
+ * EaseCircleActionInOut action. <br />
1167
+ * Reference easeInOutCirc: <br />
1168
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
1169
+ * @class
1170
+ * @extends ActionEase
1171
+ *
1172
+ * @deprecated since v3.0 <br /> Please use action.easing(easeCircleActionInOut());
1173
+ *
1174
+ * @example
1175
+ * //The old usage
1176
+ * EaseCircleActionInOut.create(action);
1177
+ * //The new usage
1178
+ * action.easing(easeCircleActionInOut());
1179
+ */
1180
+ export declare const EaseCircleActionInOut: any;
1181
+ export declare const _easeCircleActionInOut: {
1182
+ easing: any;
1183
+ reverse: () => /*elided*/ any;
1184
+ };
1185
+ /**
1186
+ * Creates the action easing object. <br />
1187
+ * Reference easeInOutCirc: <br />
1188
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
1189
+ * @function
1190
+ * @returns {Object}
1191
+ * @example
1192
+ * //example
1193
+ * action.easing(easeCircleActionInOut());
1194
+ */
1195
+ export declare const easeCircleActionInOut: () => {
1196
+ easing: any;
1197
+ reverse: () => /*elided*/ any;
1198
+ };
1199
+ /**
1200
+ * EaseCubicActionIn action. <br />
1201
+ * Reference easeInCubic: <br />
1202
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
1203
+ * @class
1204
+ * @extends ActionEase
1205
+ *
1206
+ * @deprecated since v3.0 <br /> action.easing(easeCubicActionIn());
1207
+ *
1208
+ * @example
1209
+ * //The old usage
1210
+ * EaseCubicActionIn.create(action);
1211
+ * //The new usage
1212
+ * action.easing(easeCubicActionIn());
1213
+ */
1214
+ export declare const EaseCubicActionIn: any;
1215
+ export declare const _easeCubicActionIn: {
1216
+ easing: any;
1217
+ reverse: () => /*elided*/ any;
1218
+ };
1219
+ /**
1220
+ * Creates the action easing object. <br />
1221
+ * Reference easeInCubic: <br />
1222
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
1223
+ * @function
1224
+ * @returns {Object}
1225
+ * @example
1226
+ * //example
1227
+ * action.easing(easeCubicActionIn());
1228
+ */
1229
+ export declare const easeCubicActionIn: () => {
1230
+ easing: any;
1231
+ reverse: () => /*elided*/ any;
1232
+ };
1233
+ /**
1234
+ * EaseCubicActionOut action. <br />
1235
+ * Reference easeOutCubic: <br />
1236
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
1237
+ * @class
1238
+ * @extends ActionEase
1239
+ *
1240
+ * @deprecated since v3.0 <br /> Please use action.easing(easeCubicActionOut());
1241
+ *
1242
+ * @example
1243
+ * //The old usage
1244
+ * EaseCubicActionOut.create(action);
1245
+ * //The new usage
1246
+ * action.easing(easeCubicActionOut());
1247
+ */
1248
+ export declare const EaseCubicActionOut: any;
1249
+ export declare const _easeCubicActionOut: {
1250
+ easing: any;
1251
+ reverse: () => /*elided*/ any;
1252
+ };
1253
+ /**
1254
+ * Creates the action easing object. <br />
1255
+ * Reference easeOutCubic: <br />
1256
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
1257
+ * @function
1258
+ * @returns {Object}
1259
+ * @example
1260
+ * //example
1261
+ * action.easing(easeCubicActionOut());
1262
+ */
1263
+ export declare const easeCubicActionOut: () => {
1264
+ easing: any;
1265
+ reverse: () => /*elided*/ any;
1266
+ };
1267
+ /**
1268
+ * EaseCubicActionInOut action. <br />
1269
+ * Reference easeInOutCubic: <br />
1270
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
1271
+ * @class
1272
+ * @extends ActionEase
1273
+ *
1274
+ * @deprecated since v3.0 <br /> Please use action.easing(easeCubicActionInOut());
1275
+ *
1276
+ * @example
1277
+ * //The old usage
1278
+ * EaseCubicActionInOut.create(action);
1279
+ * //The new usage
1280
+ * action.easing(easeCubicActionInOut());
1281
+ */
1282
+ export declare const EaseCubicActionInOut: any;
1283
+ export declare const _easeCubicActionInOut: {
1284
+ easing: any;
1285
+ reverse: () => /*elided*/ any;
1286
+ };
1287
+ /**
1288
+ * Creates the action easing object. <br />
1289
+ * Reference easeInOutCubic: <br />
1290
+ * {@link http://www.zhihu.com/question/21981571/answer/19925418}
1291
+ * @function
1292
+ * @returns {Object}
1293
+ */
1294
+ export declare const easeCubicActionInOut: () => {
1295
+ easing: any;
1296
+ reverse: () => /*elided*/ any;
1297
+ };
1298
+ //# sourceMappingURL=ActionEase.d.ts.map