ProjectEnvironment
Overview
ProjectEnvironment
is an enumeration that defines the possible environmental contexts for a project. It specifies whether a design project is meant for interior or exterior spaces.
enum ProjectEnvironment
{
Interior = "Interior",
Exterior = "Exterior"
}
Description
The ProjectEnvironment
enum is used throughout the API to determine the appropriate rendering settings, materials, lighting conditions, and other environment-specific configurations for a project.
Values
Value | Description |
---|---|
Interior | Designates projects intended for indoor spaces, such as rooms, offices, or interior design concepts. |
Exterior | Designates projects intended for outdoor spaces, such as building exteriors, landscapes, or outdoor living areas. |
Usage Example
// Setting the environment type for a new project
const newProject = {
name: "Modern Living Room",
environment: ProjectEnvironment.Interior,
// other project properties
};