Capítulo 505 de 859

Chapter 505: UnpackFloatNode

Core Idea

This node represents an operation that unpacks values from a 32-bit unsigned integer, reinterpreting the results as a floating-point vector

Key Concepts

  • encoding : string: The numeric encoding.
  • isUnpackFloatNode : boolean (readonly): This flag can be used for type testing.
  • uintNode : Node: The unsigned integer to be unpacked.

Reference Tables

Constructor

Signature
`new UnpackFloatNode( encoding : 'snorm'

Properties

PropertyDescription
.encoding : stringThe numeric encoding.
.isUnpackFloatNode : boolean (readonly)This flag can be used for type testing.
.uintNode : NodeThe unsigned integer to be unpacked.

Key Takeaways

  1. UnpackFloatNode extends: EventDispatcher → Node → TempNode
  2. Most relevant properties: encoding, isUnpackFloatNode, uintNode.

Connects To