@glowjs/core 2025.2.25 → 2025.2.27
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/glow.core.d.ts
CHANGED
|
@@ -2032,8 +2032,9 @@ export declare class CameraMgr extends Base {
|
|
|
2032
2032
|
* @param target 目标
|
|
2033
2033
|
* @param time 花费的时间,默认值2000毫秒
|
|
2034
2034
|
* @param callback 完成回调函数
|
|
2035
|
+
* @param easing 缓动函数类型
|
|
2035
2036
|
*/
|
|
2036
|
-
flyTo(position: Point3D, target: Point3D, time?: number, callback?: () => void): void;
|
|
2037
|
+
flyTo(position: Point3D, target: Point3D, time?: number, callback?: () => void, easing?: EasingFunction): void;
|
|
2037
2038
|
private _updateOrthographic;
|
|
2038
2039
|
/**
|
|
2039
2040
|
* 停止飞行
|
|
@@ -5135,6 +5136,42 @@ export declare enum DoorWindowDirection {
|
|
|
5135
5136
|
*/
|
|
5136
5137
|
PositiveNegative = 3
|
|
5137
5138
|
}
|
|
5139
|
+
/**
|
|
5140
|
+
* 缓动函数枚举
|
|
5141
|
+
*/
|
|
5142
|
+
export declare enum EasingFunction {
|
|
5143
|
+
"Linear.None" = "Linear.None",
|
|
5144
|
+
"Quadratic.In" = "Quadratic.In",
|
|
5145
|
+
"Quadratic.Out" = "Quadratic.Out",
|
|
5146
|
+
"Quadratic.InOut" = "Quadratic.InOut",
|
|
5147
|
+
"Cubic.In" = "Cubic.In",
|
|
5148
|
+
"Cubic.Out" = "Cubic.Out",
|
|
5149
|
+
"Cubic.InOut" = "Cubic.InOut",
|
|
5150
|
+
"Quartic.In" = "Quartic.In",
|
|
5151
|
+
"Quartic.Out" = "Quartic.Out",
|
|
5152
|
+
"Quartic.InOut" = "Quartic.InOut",
|
|
5153
|
+
"Quintic.In" = "Quintic.In",
|
|
5154
|
+
"Quintic.Out" = "Quintic.Out",
|
|
5155
|
+
"Quintic.InOut" = "Quintic.InOut",
|
|
5156
|
+
"Sinusoidal.In" = "Sinusoidal.In",
|
|
5157
|
+
"Sinusoidal.Out" = "Sinusoidal.Out",
|
|
5158
|
+
"Sinusoidal.InOut" = "Sinusoidal.InOut",
|
|
5159
|
+
"Exponential.In" = "Exponential.In",
|
|
5160
|
+
"Exponential.Out" = "Exponential.Out",
|
|
5161
|
+
"Exponential.InOut" = "Exponential.InOut",
|
|
5162
|
+
"Circular.In" = "Circular.In",
|
|
5163
|
+
"Circular.Out" = "Circular.Out",
|
|
5164
|
+
"Circular.InOut" = "Circular.InOut",
|
|
5165
|
+
"Elastic.In" = "Elastic.In",
|
|
5166
|
+
"Elastic.Out" = "Elastic.Out",
|
|
5167
|
+
"Elastic.InOut" = "Elastic.InOut",
|
|
5168
|
+
"Back.In" = "Back.In",
|
|
5169
|
+
"Back.Out" = "Back.Out",
|
|
5170
|
+
"Back.InOut" = "Back.InOut",
|
|
5171
|
+
"Bounce.In" = "Bounce.In",
|
|
5172
|
+
"Bounce.Out" = "Bounce.Out",
|
|
5173
|
+
"Bounce.InOut" = "Bounce.InOut"
|
|
5174
|
+
}
|
|
5138
5175
|
/**
|
|
5139
5176
|
* 实体类型枚举
|
|
5140
5177
|
*/
|