UNPKG

lingo3d

Version:

Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor

18 lines (17 loc) 713 B
import Appendable from "../display/core/Appendable"; import ISplashScreen from "../interface/ISplashScreen"; import Text from "./Text"; export default class SplashScreen extends Appendable implements ISplashScreen { static componentName: string; static defaults: Partial<import("../interface/utils/Defaults").default<ISplashScreen>>; static schema: Required<import("../interface/utils/extractProps").ExtractProps<ISplashScreen>>; private splashScreen; private textContainer; constructor(); protected disposeNode(): void; get opacity(): number; set opacity(value: number); get textCenter(): boolean; set textCenter(value: boolean); $appendNode(child: Text): void; }