mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-05 02:39:46 +02:00
13 lines
245 B
TypeScript
13 lines
245 B
TypeScript
import { FloatNode } from '../inputs/FloatNode';
|
|
import { Node } from '../core/Node';
|
|
|
|
export class MaxMIPLevelNode extends FloatNode {
|
|
|
|
constructor( texture: Node );
|
|
|
|
texture: Node;
|
|
maxMIPLevel: number;
|
|
nodeType: string;
|
|
value: number;
|
|
|
|
}
|