(
runtimeScene: RuntimeScene,
identifier: string
)
| 249 | * @returns Value of playing tween animation |
| 250 | */ |
| 251 | export const getValue = ( |
| 252 | runtimeScene: RuntimeScene, |
| 253 | identifier: string |
| 254 | ): float => { |
| 255 | return getTweensMap(runtimeScene).getValue(identifier); |
| 256 | }; |
| 257 | |
| 258 | const linearInterpolation = gdjs.evtTools.common.lerp; |
| 259 | const exponentialInterpolation = |