C# Класс THREE.Scene

Наследование: Object3D
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
autoUpdate bool
fog Fog
overrideMaterial Material

Открытые методы

Метод Описание
Scene ( ) : System

Scenes allow you to set up what and where is to be rendered by three.js. This is where you place objects, lights and cameras.

Описание методов

Scene() публичный Метод

Scenes allow you to set up what and where is to be rendered by three.js. This is where you place objects, lights and cameras.
public Scene ( ) : System
Результат System

Описание свойств

autoUpdate публичное свойство

Default is true. If set, then the renderer checks every frame if the scene and its objects needs matrix updates. When it isn't, then you have to maintain all matrices in the scene yourself.
public bool autoUpdate
Результат bool

fog публичное свойство

A fog instance defining the type of fog that affects everything rendered in the scene. Default is null.
public Fog,THREE fog
Результат Fog

overrideMaterial публичное свойство

If not null, it will force everything in the scene to be rendered with that material. Default is null.
public Material,THREE overrideMaterial
Результат Material