mirror of
https://github.com/jiawanlong/Cesium-Examples.git
synced 2025-07-06 16:31:03 +00:00
27 lines
429 B
JavaScript
27 lines
429 B
JavaScript
![]() |
import Node, { addNodeClass } from '../core/Node.js';
|
||
|
import { nodeImmutable } from '../shadernode/ShaderNode.js';
|
||
|
|
||
|
class PointUVNode extends Node {
|
||
|
|
||
|
constructor() {
|
||
|
|
||
|
super( 'vec2' );
|
||
|
|
||
|
this.isPointUVNode = true;
|
||
|
|
||
|
}
|
||
|
|
||
|
generate( /*builder*/ ) {
|
||
|
|
||
|
return 'vec2( gl_PointCoord.x, 1.0 - gl_PointCoord.y )';
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
export default PointUVNode;
|
||
|
|
||
|
export const pointUV = nodeImmutable( PointUVNode );
|
||
|
|
||
|
addNodeClass( PointUVNode );
|