mirror of
https://github.com/cocos/cocos-engine.git
synced 2026-09-09 17:20:33 +08:00
93 lines
3.2 KiB
TypeScript
93 lines
3.2 KiB
TypeScript
/* eslint-disable @typescript-eslint/ban-types */
|
||
/*
|
||
Copyright (c) 2020-2023 Xiamen Yaji Software Co., Ltd.
|
||
|
||
https://www.cocos.com/
|
||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||
of this software and associated documentation files (the "Software"), to deal
|
||
in the Software without restriction, including without limitation the rights to
|
||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
||
of the Software, and to permit persons to whom the Software is furnished to do so,
|
||
subject to the following conditions:
|
||
|
||
The above copyright notice and this permission notice shall be included in
|
||
all copies or substantial portions of the Software.
|
||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||
THE SOFTWARE.
|
||
*/
|
||
|
||
/**
|
||
* @en
|
||
* Built-in string value definition for the cache function.
|
||
* @zh
|
||
* 内置缓动函数的字符串值定义。
|
||
*/
|
||
export type TweenEasing =
|
||
'linear' | 'smooth' | 'fade' | 'constant' |
|
||
'quadIn' | 'quadOut' | 'quadInOut' | 'quadOutIn' |
|
||
'cubicIn' | 'cubicOut' | 'cubicInOut' | 'cubicOutIn' |
|
||
'quartIn' | 'quartOut' | 'quartInOut' | 'quartOutIn' |
|
||
'quintIn' | 'quintOut' | 'quintInOut' | 'quintOutIn' |
|
||
'sineIn' | 'sineOut' | 'sineInOut' | 'sineOutIn' |
|
||
'expoIn' | 'expoOut' | 'expoInOut' | 'expoOutIn' |
|
||
'circIn' | 'circOut' | 'circInOut' | 'circOutIn' |
|
||
'elasticIn' | 'elasticOut' | 'elasticInOut' | 'elasticOutIn' |
|
||
'backIn' | 'backOut' | 'backInOut' | 'backOutIn' |
|
||
'bounceIn' | 'bounceOut' | 'bounceInOut' | 'bounceOutIn';
|
||
|
||
/**
|
||
* @en
|
||
* The interface of optional property.
|
||
* @zh
|
||
* 缓动的可选属性的接口定义。
|
||
*/
|
||
export interface ITweenOption {
|
||
|
||
/**
|
||
* @en
|
||
* Easing function, you can pass in a string or custom function.
|
||
* @zh
|
||
* 缓动函数,可以使用已有的,也可以传入自定义的函数。
|
||
*/
|
||
easing?: TweenEasing | ((k: number) => number);
|
||
|
||
/**
|
||
* @en
|
||
* Interpolation function, you can pass in a custom function.
|
||
* @zh
|
||
* 插值函数,参数的意义 start:起始值,end:目标值,current:当前值,ratio:当前进度
|
||
*/
|
||
progress?: (start: number, end: number, current: number, ratio: number) => number;
|
||
|
||
/**
|
||
* @en
|
||
* A callback that is triggered when a tween action is started.
|
||
* @zh
|
||
* 回调,当缓动动作启动时触发。
|
||
*/
|
||
onStart?: (target?: object) => void;
|
||
|
||
/**
|
||
* @en
|
||
* A callback that is triggered when a tween action is update.
|
||
* @zh
|
||
* 回调,当缓动动作更新时触发。
|
||
*/
|
||
onUpdate?: (target?: object, ratio?: number) => void;
|
||
|
||
/**
|
||
* @en
|
||
* A callback that is triggered when a tween action is completed.
|
||
* @zh
|
||
* 回调,当缓动动作完成时触发。
|
||
*/
|
||
onComplete?: (target?: object) => void;
|
||
}
|