mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-05 10:49:36 +02:00
14 lines
237 B
TypeScript
14 lines
237 B
TypeScript
import { Node } from '../core/Node';
|
|
import { NodeMaterial } from './NodeMaterial';
|
|
|
|
export class SpriteNodeMaterial extends NodeMaterial {
|
|
|
|
constructor();
|
|
|
|
color: Node;
|
|
alpha: Node;
|
|
mask: Node;
|
|
position: Node;
|
|
spherical: Node;
|
|
|
|
}
|