mirror of
https://github.com/CesiumGS/obj2gltf.git
synced 2024-11-23 16:44:05 -05:00
20 lines
372 B
JavaScript
20 lines
372 B
JavaScript
'use strict';
|
|
|
|
module.exports = Texture;
|
|
|
|
/**
|
|
* An object containing information about a texture.
|
|
*
|
|
* @private
|
|
*/
|
|
function Texture() {
|
|
this.transparent = false;
|
|
this.source = undefined;
|
|
this.name = undefined;
|
|
this.extension = undefined;
|
|
this.path = undefined;
|
|
this.pixels = undefined;
|
|
this.width = undefined;
|
|
this.height = undefined;
|
|
}
|