OcclusionTextureInfo.parse constructor
Implementation
OcclusionTextureInfo.parse(
GltfRoot root,
Map<String, Object?> map,
) : this(
root: root,
index: Parser.ref(root, map, 'index')!,
texCoord: Parser.integer(map, 'texCoord'),
strength: Parser.float(map, 'strength') ?? 1.0,
);