Class TComposedCubeMapTextureNode
Unit
Declaration
type TComposedCubeMapTextureNode = class(TAbstractEnvironmentTextureNode)
Description
Cube environment map texture defined as a six individual 2D texture nodes.
Source: scene/x3d/x3dnodes_standard_cubemaptexturing.inc (line 24).
Hierarchy
- TObject
- TPersistent
- TX3DFileItem
- TX3DNode
- TAbstractNode
- TAbstractAppearanceChildNode
- TAbstractTextureNode
- TAbstractSingleTextureNode
- TAbstractEnvironmentTextureNode
- TComposedCubeMapTextureNode
Overview
Methods
| Public | constructor Create(const AX3DName: String = ''; const ABaseUrl: String = ''); override; |
| Public | function LoadSides: boolean; |
| Public | procedure CreateNode; override; |
| Public | class function ClassX3DType: String; override; |
Properties
| Public | property FdBack: TSFNode read FFdBack; |
| Public | property Back: TAbstractTexture2DNode read GetBack write SetBack; |
| Public | property FdBottom: TSFNode read FFdBottom; |
| Public | property Bottom: TAbstractTexture2DNode read GetBottom write SetBottom; |
| Public | property FdFront: TSFNode read FFdFront; |
| Public | property Front: TAbstractTexture2DNode read GetFront write SetFront; |
| Public | property FdLeft: TSFNode read FFdLeft; |
| Public | property Left: TAbstractTexture2DNode read GetLeft write SetLeft; |
| Public | property FdRight: TSFNode read FFdRight; |
| Public | property Right: TAbstractTexture2DNode read GetRight write SetRight; |
| Public | property FdTop: TSFNode read FFdTop; |
| Public | property Top: TAbstractTexture2DNode read GetTop write SetTop; |
| Public | property FdTextureProperties: TSFNode read FFdTextureProperties; |
| Public | property TextureProperties: TTexturePropertiesNode read GetTextureProperties write SetTextureProperties; |
Description
Methods
| Public | constructor Create(const AX3DName: String = ''; const ABaseUrl: String = ''); override; |
|
This item has no description. Showing description inherited from TX3DNode.Create. Constructor. Initializes various properties:
Source: scene/x3d/x3dnodes_standard_cubemaptexturing.inc (line 30). | |
| Public | function LoadSides: boolean; |
|
Make sure all 6 sides are loaded. Make sure that all 6 fields for each cube map side are assigned, are TAbstractTexture2DNode instance (X3D spec requires it), load them, and check are they TCastleImage (we cannot support TGPUCompressedImage when loading cubemaps this way, as we have to rotate images from ComposedCubeMapTextureNode when passing them to GPU, which is only possible for TCastleImage). Also calculate AlphaChannel for the whole cube map. Our AlphaChannel method will reflect the state from last call of this. Source: scene/x3d/x3dnodes_standard_cubemaptexturing.inc (line 43). | |
| Public | procedure CreateNode; override; |
|
Create node fields and events. Source: scene/x3d/auto_generated_node_helpers/x3dnodes_composedcubemaptexture.inc (line 43). | |
| Public | class function ClassX3DType: String; override; |
|
This item has no description. Showing description inherited from TX3DNode.ClassX3DType. Node type name in VRML/X3D, for this class. Normal VRML/X3D node classes should override this to return something non-empty, and then X3DType automatically will return the same value. Empty for classes that don't have a hardcoded VRML/X3D node name, like a special TX3DUnknownNode. Such special classes should override then X3DType to return actual non-empty name there. You usually should call X3DType. The only use of this method is that it works on classes (it's "class function"), without needing at actual instance. Source: scene/x3d/auto_generated_node_helpers/x3dnodes_composedcubemaptexture.inc (line 44). | |
Properties
| Public | property FdBack: TSFNode read FFdBack; |
|
Internal wrapper for property Source: scene/x3d/auto_generated_node_helpers/x3dnodes_composedcubemaptexture.inc (line 48). | |
| Public | property Back: TAbstractTexture2DNode read GetBack write SetBack; |
|
This item has no description. Source: scene/x3d/auto_generated_node_helpers/x3dnodes_composedcubemaptexture.inc (line 50). | |
| Public | property FdBottom: TSFNode read FFdBottom; |
|
Internal wrapper for property Source: scene/x3d/auto_generated_node_helpers/x3dnodes_composedcubemaptexture.inc (line 54). | |
| Public | property Bottom: TAbstractTexture2DNode read GetBottom write SetBottom; |
|
This item has no description. Source: scene/x3d/auto_generated_node_helpers/x3dnodes_composedcubemaptexture.inc (line 56). | |
| Public | property FdFront: TSFNode read FFdFront; |
|
Internal wrapper for property Source: scene/x3d/auto_generated_node_helpers/x3dnodes_composedcubemaptexture.inc (line 60). | |
| Public | property Front: TAbstractTexture2DNode read GetFront write SetFront; |
|
This item has no description. Source: scene/x3d/auto_generated_node_helpers/x3dnodes_composedcubemaptexture.inc (line 62). | |
| Public | property FdLeft: TSFNode read FFdLeft; |
|
Internal wrapper for property Source: scene/x3d/auto_generated_node_helpers/x3dnodes_composedcubemaptexture.inc (line 66). | |
| Public | property Left: TAbstractTexture2DNode read GetLeft write SetLeft; |
|
This item has no description. Source: scene/x3d/auto_generated_node_helpers/x3dnodes_composedcubemaptexture.inc (line 68). | |
| Public | property FdRight: TSFNode read FFdRight; |
|
Internal wrapper for property Source: scene/x3d/auto_generated_node_helpers/x3dnodes_composedcubemaptexture.inc (line 72). | |
| Public | property Right: TAbstractTexture2DNode read GetRight write SetRight; |
|
This item has no description. Source: scene/x3d/auto_generated_node_helpers/x3dnodes_composedcubemaptexture.inc (line 74). | |
| Public | property FdTop: TSFNode read FFdTop; |
|
Internal wrapper for property Source: scene/x3d/auto_generated_node_helpers/x3dnodes_composedcubemaptexture.inc (line 78). | |
| Public | property Top: TAbstractTexture2DNode read GetTop write SetTop; |
|
This item has no description. Source: scene/x3d/auto_generated_node_helpers/x3dnodes_composedcubemaptexture.inc (line 80). | |
| Public | property FdTextureProperties: TSFNode read FFdTextureProperties; |
|
Internal wrapper for property Source: scene/x3d/auto_generated_node_helpers/x3dnodes_composedcubemaptexture.inc (line 84). | |
| Public | property TextureProperties: TTexturePropertiesNode read GetTextureProperties write SetTextureProperties; |
|
This item has no description. Source: scene/x3d/auto_generated_node_helpers/x3dnodes_composedcubemaptexture.inc (line 86). | |
Generated by PasDoc 0.17.0.snapshot.