TextureInfo.parse constructor

TextureInfo.parse(
  1. GltfRoot root,
  2. Map<String, Object?> map
)

Implementation

TextureInfo.parse(
  GltfRoot root,
  Map<String, Object?> map,
) : this(
        root: root,
        index: Parser.ref(root, map, 'index')!,
        texCoord: Parser.integer(map, 'texCoord'),
      );