C# Класс WaveEngine.Components.Shared.Graphics3D.BillboardRenderer

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

Private Properties

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

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

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

Initializes a new instance of the BillboardRenderer class.

BillboardRenderer ( Type layerType, AddressMode samplerMode = AddressMode.LinearClamp ) : System

Initializes a new instance of the BillboardRenderer class.

Draw ( System.TimeSpan gameTime ) : void

Allows to perform custom drawing.

This method will only be called if all the following points are true: The parent of the owner Entity of the Drawable cascades its visibility to its children and it is visible. The Drawable is active. The owner Entity of the Drawable is active and visible.

Защищенные методы

Метод Описание
Dispose ( bool disposing ) : void

Releases unmanaged and - optionally - managed resources.

Initialize ( ) : void

Performs further custom initialization for this instance.

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

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

Initializes a new instance of the BillboardRenderer class.
public BillboardRenderer ( ) : System
Результат System

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

Initializes a new instance of the BillboardRenderer class.
public BillboardRenderer ( Type layerType, AddressMode samplerMode = AddressMode.LinearClamp ) : System
layerType System.Type /// Layer type (available at ). /// Example: new SpriteRenderer(DefaultLayers.Alpha) ///
samplerMode AddressMode /// Sampler mode /// Example: new SpriteRenderer(DefaultLayers.Alpha) ///
Результат System

Dispose() защищенный Метод

Releases unmanaged and - optionally - managed resources.
protected Dispose ( bool disposing ) : void
disposing bool true to release both managed and unmanaged resources; false to release only unmanaged resources.
Результат void

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

Allows to perform custom drawing.
This method will only be called if all the following points are true: The parent of the owner Entity of the Drawable cascades its visibility to its children and it is visible. The Drawable is active. The owner Entity of the Drawable is active and visible.
public Draw ( System.TimeSpan gameTime ) : void
gameTime System.TimeSpan The elapsed game time.
Результат void

Initialize() защищенный Метод

Performs further custom initialization for this instance.
protected Initialize ( ) : void
Результат void