UNPKG

prendy

Version:

Make games with prerendered backdrops using babylonjs and repond

11 lines (10 loc) 598 B
import { AbstractMesh } from "@babylonjs/core"; import { CharacterName, PlaceName, SpotNameByPlace } from "../../types"; export declare function get2DAngleFromCharacterToSpot<T_Place extends PlaceName>(character: CharacterName, place: T_Place, spot: SpotNameByPlace[T_Place]): number; export declare function get2DAngleBetweenCharacters(charA: CharacterName, charB: CharacterName): number; export declare function getCharDollStuff<T_CharacterName extends CharacterName>(charName: T_CharacterName): { dollName: string; meshRef: AbstractMesh | null; dollRefs: any; dollState: any; };