obj2gltf/lib/Texture.js

20 lines
356 B
JavaScript
Raw Normal View History

2021-08-02 11:31:59 -04:00
"use strict";
2017-07-28 16:56:28 -04:00
module.exports = Texture;
2017-07-28 16:56:28 -04:00
/**
* An object containing information about a texture.
2017-07-28 16:56:28 -04:00
*
* @private
*/
function Texture() {
2021-08-02 11:31:59 -04:00
this.transparent = false;
this.source = undefined;
this.name = undefined;
this.extension = undefined;
this.path = undefined;
this.pixels = undefined;
this.width = undefined;
this.height = undefined;
2017-07-28 16:56:28 -04:00
}