Attention: Here be dragons

This is the latest (unstable) version of this documentation, which may document features not available in or compatible with released stable versions of Godot.

VisualShaderNodeUIntFunc

Hérite de : VisualShaderNode < Resource < RefCounted < Object

An unsigned scalar integer function to be used within the visual shader graph.

Description

Accept an unsigned integer scalar (x) to the input port and transform it according to function.

Propriétés

Function

function

0


Énumérations

enum Function: 🔗

Function FUNC_NEGATE = 0

Inverse le signe de x en utilisant -(x).

Function FUNC_BITWISE_NOT = 1

Returns the result of bitwise NOT operation on the integer. Translates to ~a in the Godot Shader Language.

Function FUNC_MAX = 2

Représente la taille de l'énumération Function.


Descriptions des propriétés

Function function = 0 🔗

Une fonction à appliquer au scalaire.