Buckets:
| /** | |
| * {@link NodeBuilder} is going to create instances of this class during the build process | |
| * of nodes. They represent the final shader variables that are going to be generated | |
| * by the builder. A dictionary of node variables is maintained in {@link NodeBuilder#vars} for | |
| * this purpose. | |
| */ | |
| class NodeVar { | |
| /** | |
| * Constructs a new node variable. | |
| * | |
| * @param {string} name - The name of the variable. | |
| * @param {string} type - The type of the variable. | |
| * @param {boolean} [readOnly=false] - The read-only flag. | |
| * @param {?number} [count=null] - The size. | |
| */ | |
| constructor( name, type, readOnly = false, count = null ) { | |
| /** | |
| * This flag can be used for type testing. | |
| * | |
| * @type {boolean} | |
| * @readonly | |
| * @default true | |
| */ | |
| this.isNodeVar = true; | |
| /** | |
| * The name of the variable. | |
| * | |
| * @type {string} | |
| */ | |
| this.name = name; | |
| /** | |
| * The type of the variable. | |
| * | |
| * @type {string} | |
| */ | |
| this.type = type; | |
| /** | |
| * The read-only flag. | |
| * | |
| * @type {boolean} | |
| */ | |
| this.readOnly = readOnly; | |
| /** | |
| * The size. | |
| * | |
| * @type {?number} | |
| */ | |
| this.count = count; | |
| } | |
| } | |
| export default NodeVar; | |
Xet Storage Details
- Size:
- 1.16 kB
- Xet hash:
- befd82791584cf7e44bcc69cb325451248e9b10ea935ff42a25c469e2404255b
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.