bool
constbool:Bool
Defined in: packages/typegpu/src/data/numeric.ts:55
A schema that represents a boolean value. (equivalent to bool in WGSL)
Can also be called to cast a value to a bool in accordance with WGSL casting rules.
Examples
Section titled βExamplesβconst value = bool(); // falseconst value = bool(0); // falseconst value = bool(-0); // falseconst value = bool(21.37); // true