3js-game-framework
Version:
3js-game-framework is a lightweight and flexible framework designed to streamline the creation of 3D games and interactive applications using Three.js
29 lines (28 loc) • 514 B
TypeScript
import { Color } from "three";
declare const _default: {
camera: {
near: number;
far: number;
fov: number;
position: number[];
};
scene: {
background: Color;
};
plane: {
width: number;
height: number;
color: number;
};
box: {
width: number;
height: number;
depth: number;
color: number;
};
sphere: {
radius: number;
color: number;
};
};
export default _default;