@types/three
Version:
TypeScript definitions for three
17 lines (13 loc) • 484 B
TypeScript
import Node from "../core/Node.js";
import { NodeRepresentation, ShaderNodeObject } from "../tsl/TSLCore.js";
export default class SpriteSheetUVNode extends Node {
countNode: Node;
uvNode: Node;
frameNode: Node;
constructor(countNode: Node, uvNode?: Node, frameNode?: Node);
}
export const spritesheetUV: (
countNode: NodeRepresentation,
uvNode: NodeRepresentation | null,
frameNode: NodeRepresentation | null,
) => ShaderNodeObject<SpriteSheetUVNode>;