Class TAbstractBackgroundNode
Unit
X3DNodes
Declaration
type TAbstractBackgroundNode = class(TAbstractBindableNode)
Description
Abstract type from which all backgrounds inherit.
Hierarchy
Overview
Methods
Properties
Description
Methods
 |
procedure CreateNode; override; |
|
 |
function Texture(const Side: TBackgroundSide): TAbstractTextureNode; virtual; abstract; |
Texture node for given background side. May return Nil if none.
It is the caller's responsibility to take care of freeing the result, but only if it's not otherwise used. In other words, use TX3DNode.FreeIfUnused (or some routine based on it), unless you're sure that you always make the returned node a child of another node (in this case the returned node is always used, and remains managed by parent node).
|
 |
procedure SetGroundAngle(const Value: array of Single); |
|
 |
procedure SetSkyAngle(const Value: array of Single); |
|
Properties
 |
property FdGroundAngle: TMFFloat read FFdGroundAngle; |
|
 |
property FdGroundColor: TMFColor read FFdGroundColor; |
|
 |
property FdSkyAngle: TMFFloat read FFdSkyAngle; |
|
 |
property FdSkyColor: TMFColor read FFdSkyColor; |
|
 |
property FdTransparency: TSFFloat read FFdTransparency; |
|
 |
property FdEffects: TMFNode read FFdEffects; |
|
 |
property Transparency: Single read GetTransparency write SetTransparency; |
|
Generated by PasDoc 0.15.0.
|