Skip to main content

Material

Materials describe the appearance of models in the scene.

Properties

PropertyTypeDescription
Diffusevrvec3Main material colour, RGB values (0.0 - 1.0)
ReflectivitynumberHow reflective the material is (0.0 - 1.0)
SmoothnessnumberHow smooth the material is (0.0 - 1.0)
MetalnessnumberHow metallic the material is (0.0 - 1.0)
AmbientnumberHow much ambient light the material reflects (0.0 - 1.0)
Emissivevrvec3The colour emitted by the material, RGB values (0.0 - 1.0)
EmissiveIntensitynumberEmissive multiplier (0.0 - 10000.0)
OpacitynumberHow opaque the material is (0.0 - 1.0). Values other than 1 require BlendMode to be set to something other than None.
DiffuseMapvrnodeLink to colour texture in the tree
SmoothnessMapvrnodeLink to monochrome texture in the tree
ReflectivityMapvrnodeLink to monochrome texture in the tree
AmbientMapvrnodeLink to monochrome texture in the tree
EmissiveMapvrnodeLink to colour texture in the tree
OpacityMapvrnodeLink to monochrome texture in the tree
EnvironmentMapvrnodeLink to colour texture in the tree
NormalMapvrnodeLink to colour texture in the tree
BumpMapvrnodeLink to colour texture in the tree
EnabledbooleanEnabled or disabled (when disabled, any objects using this material are not rendered)
BlendModenumberWhich blend mode to use. See the blend mode table below.
AlphaTestbooleanWhether to enable alpha testing
AlphaTestRefnumberThe opacity value below which the fragment is discarded
AlphaToCoveragebooleanWhether to enable screendoor transparency
BumpScalenumberScales the bump or normal map (0.0 - 20.0)
ReliefMappingbooleanWhether to enable relief mapping
TwoSidedLightingbooleanWhether to enable two sided lighting for objects using this material
MapMatrixvrmatrix4Transform to apply to texture coordinates on objects that this material is applied to
LineWidthnumberSpecify the width of lines drawn with this material (0.0 - 20.0)
LinePatternnumberThe pattern to use to draw lines. See the line pattern table below.
LitbooleanSpecify whether this material is affected by scene lighting
NightEmissivebooleanSpecify whether this material is affected by night time
HalfLambertbooleanSpecify whether to use half lambert diffuse lighting mode
PreviewShapevrnodeSpecify a custom shape (Model node) to use to preview this material, instead of the default sphere

Blend Modes

TypeDescription
__StdMaterial_BlendNoneNo alpha blending at all (Opacity property changes have no effect)
__StdMaterial_BlendAlphaAlpha blending
__StdMaterial_BlendAdditiveAdditive blending
__StdMaterial_BlendMultiplicativeMultiplicative blending

Line Patterns

TypeDescription
__StdMaterial_LinePatternFullLineDraws solid lines
__StdMaterial_LinePatternNoLineDoesn't draw lines at all
__StdMaterial_LinePatternDoubleDashedDraws double-dashed lines
__StdMaterial_LinePatternDashedLineDraws dashed lines

Examples

Example 1

This script will change the opacity value (0.0 to 1.0) of the material pointed to by the variable HighLight. The HighLight variable points at the Material assembly within the Library tree view. When the opacty level if greater than or equal to 1.0 it then begins to decrement the opacity level. If the opacity level is less than or equal to 0.0 it then increments the opacity level.

-- Drag/Drop section BEGINS - Do not edit between BEGINS and ENDS.
local Highlight = __Script.dragdrop.Highlight
local Delta = __Script.dragdrop.Direction
-- Drag/Drop section ENDS

-- Highlight is a StdMaterial node
-- Delta is a MetaDataFloat node

print("Material ", Highlight)
print("Colour ", Highlight.Diffuse)
print("Ambient ", Highlight.Ambient)
print("Opacity ", Highlight.Opacity)
print("Smoothness ", Highlight.Smoothness)
print("Metalicness ", Highlight.Metalness)
print("Reflectivity ", Highlight.Reflectivity)

-- initialise the delta variable
if Delta.Value == 0 then
Delta.Value = 0.1
end

-- get the material opacity
local opacity = Highlight.Opacity

-- update the opacity depending on direction
opacity = opacity + Delta.Value

-- check the opacity value is not beyond the limits
if opacity <= 0.0 then
Delta.Value = 0.1
opacity = 0.0
elseif opacity >= 1.0 then
Delta.Value = -0.1
opacity = 1.0
end

-- set the new opacity value
Highlight.Opacity = opacity

Example 2

Simple script which changes the Emissive value of the material pointed to by the Chess_table variable. The Emissive value is defined in an array of 3 floating point number between 0.0 and .0 for the red, green and blue components.

-- Drag/Drop section BEGINS - Do not edit between BEGINS and ENDS.
local table = __Script.dragdrop.table
-- Drag/Drop section ENDS

-- get Emissive colour
local emissive = table.Emissive

-- set material Diffuse to same as emissive
table.Diffuse = emissive

-- set emissive RGB values
emissive[1] = 0.0
emissive[2] = 1.0
emissive[3] = 0.0

-- print the DiffuseMap link
print(table.DiffuseMap)

-- print the DiffuseMap filename
print(table.DiffuseMap.Filename)

Example 3

This example demonstrates how to change how a texture is mapped onto a surface by modifying the MapMatrix. The MapMatrix is a 3x3 matrix which is applied to the texture coordinates of the assembly it is applied to. This is accessed using the same method as the Assembly Transform.

-- Drag/Drop section BEGINS - Do not edit between BEGINS and ENDS.
local table = __Script.dragdrop.table
-- Drag/Drop section ENDS

-- increment the Y offset position by 0.01
table.MapMatrix.Position.Y = table.MapMatrix.Position.Y + 0.01