prendy
Version:
Make games with prerendered backdrops using babylonjs and repond
15 lines (14 loc) • 636 B
TypeScript
import { CSSProperties } from "react";
import { CharacterName, SpeechBubbleName } from "../../types";
export declare function showSpeech(text: string, options?: {
time?: number;
showOnce?: boolean;
character?: SpeechBubbleName & CharacterName;
zoomAmount?: number;
lookAtPlayer?: boolean;
returnToZoomBeforeConversation?: boolean;
stylesBySpecialText?: Record<string, CSSProperties>;
}): Promise<void>;
export declare function showMiniBubble(text: string, time?: number): void;
export declare function hideMiniBubble(): void;
export declare function showAlarmText(text: string, time: number): Promise<void>;