 |
StandardMaterial(String, IBitmapIO, CommonSamplerTypes, Single, NullableColor4, Boolean, String) Constructor |
StandardMaterial constructor with file name of the diffuse texture.
The texture will be lazily loaded when this material will be initialized.
When the created GpuImage is not cached by the Scene (defined by static
UseSceneCacheForTextures) or GpuDevice (defined by static
UseGpuDeviceCacheForTextures), then it is disposed when this Material is disposed.
Namespace: Ab4d.SharpEngine.MaterialsAssembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 3.0.9208+3b2441d6a11f923f2600f40f4296bdc3d8b46035
Syntaxpublic StandardMaterial(
string textureFileName,
IBitmapIO? bitmapIO = null,
CommonSamplerTypes samplerType = CommonSamplerTypes.Mirror,
float alphaClipThreshold = 0f,
Color4? initialDiffuseColor = null,
bool loadInBackground = false,
string? name = null
)
Parameters
- textureFileName String
- texture file name
- bitmapIO IBitmapIO (Optional)
- Optional IBitmapIO that is used to load the texture. When null, then the DefaultBitmapIOis used
- samplerType CommonSamplerTypes (Optional)
- texture sampler type (Mirror by default)
- alphaClipThreshold Single (Optional)
- optional float that defines the AlphaClipThreshold (0 by default)
- initialDiffuseColor NullableColor4 (Optional)
- optional Color4 that is initially set to DiffuseColor and Opacity. When the texture is loaded, the DiffuseColor is set to White and Opacity to 1 (if not changed by the user)
- loadInBackground Boolean (Optional)
- when true (false by default) then the texture is loaded in the background thread. Until the texture is loaded, the initialDiffuseColor or White color is used for this material.
- name String (Optional)
- optional material name
See Also