workadventure/front/src/Api/Events/CameraSetEvent.ts

17 lines
485 B
TypeScript
Raw Normal View History

2021-12-16 13:41:28 +01:00
import * as tg from "generic-type-guard";
export const isCameraSetEvent = new tg.IsInterface()
2021-12-16 13:41:28 +01:00
.withProperties({
x: tg.isNumber,
y: tg.isNumber,
width: tg.isOptional(tg.isNumber),
height: tg.isOptional(tg.isNumber),
lock: tg.isBoolean,
2021-12-16 13:41:28 +01:00
smooth: tg.isBoolean,
})
.get();
/**
* A message sent from the iFrame to the game to change the camera position.
*/
export type CameraSetEvent = tg.GuardedType<typeof isCameraSetEvent>;