(
runtimeScene: RuntimeScene,
id: string
)
| 206 | }; |
| 207 | |
| 208 | export const pauseSceneTween = ( |
| 209 | runtimeScene: RuntimeScene, |
| 210 | id: string |
| 211 | ) => { |
| 212 | getTweensMap(runtimeScene).pauseTween(id); |
| 213 | }; |
| 214 | |
| 215 | export const stopSceneTween = ( |
| 216 | runtimeScene: RuntimeScene, |
nothing calls this directly
no test coverage detected