Table of Contents

Enum VisualShaderNodeUVFunc.FunctionEnum

Namespace
Godot
Assembly
GodotSharp.dll
public enum VisualShaderNodeUVFunc.FunctionEnum : long

Fields

Max = 2

Represents the size of the VisualShaderNodeUVFunc.FunctionEnum enum.

Panning = 0

Translates uv by using scale and offset values using the following formula: uv = uv + offset * scale. uv port is connected to UV built-in by default.

Scaling = 1

Scales uv by using scale and pivot values using the following formula: uv = (uv - pivot) * scale + pivot. uv port is connected to UV built-in by default.