Navigation
API > API/Runtime > API/Runtime/Engine
| Name | EMaterialVectorCoordTransform |
| Type | enum |
| Header File | /Engine/Source/Runtime/Engine/Public/Materials/MaterialExpressionTransform.h |
| Include Path | #include "Materials/MaterialExpressionTransform.h" |
Syntax
enum EMaterialVectorCoordTransform
{
TRANSFORM_Tangent,
TRANSFORM_Local,
TRANSFORM_World,
TRANSFORM_View,
TRANSFORM_Camera,
TRANSFORM_ParticleWorld,
TRANSFORM_Instance,
TRANSFORM_MAX,
}
Values
| Name | Remarks |
|---|---|
| TRANSFORM_Tangent | Tangent space (relative to the surface) |
| TRANSFORM_Local | Local space (relative to the rendered object, = object space) |
| TRANSFORM_World | World space, a unit is 1cm |
| TRANSFORM_View | View space (relative to the camera/eye, = camera space, differs from camera space in the shadow passes) |
| TRANSFORM_Camera | Camera space |
| TRANSFORM_ParticleWorld | Particle space, deprecated value will be removed in a future release use instance space. |
| TRANSFORM_Instance | Instance space (used to provide per instance transform, i.e. for Instanced Static Mesh / Particles). |
| TRANSFORM_MAX |