Skip to content

Geometry.isSkinned8

Summary

Geometry.isSkinned8 reads the current isSkinned8 value from this Geometry instance. Use it to inspect runtime state without mutating resources.

Syntax

Geometry.isSkinned8: boolean
const value = geometry.isSkinned8;

Parameters

This API does not take parameters.

Returns

boolean - Boolean result indicating whether the queried condition is satisfied.

Type Details

// No additional descriptor expansion is required for this signature.

Example

const canvas = document.querySelector("canvas");
const wgpu = await WasmGPU.create(canvas);

const geometry = wgpu.geometry.sphere(1, 24, 16);
const value = geometry.isSkinned8;
console.log(value);

See Also