Files
cocos-engine/cocos/tween/export-api.ts
pandamicro afd22296b4 MIT license update and to new year 2023 (#13927)
* Cpp MIT license update and to date
* TS MIT license update and to date
2022-12-28 11:25:12 +08:00

93 lines
3.2 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/* 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;
}