(layer: gdjs.RuntimeLayer)
| 16 | const tweenLayoutValueSetter = (value: float) => {}; |
| 17 | const tweenLayerValueSetter = (value: float) => {}; |
| 18 | const getTweenLayerCameraPositionSetter = (layer: gdjs.RuntimeLayer) => { |
| 19 | return ([x, y]: Array<float>) => { |
| 20 | layer.setCameraX(x); |
| 21 | layer.setCameraY(y); |
| 22 | }; |
| 23 | }; |
| 24 | const getTweenLayerCameraRotationSetter = (layer: gdjs.RuntimeLayer) => { |
| 25 | return (value: float) => layer.setCameraRotation(value); |
| 26 | }; |
no test coverage detected