UNPKG

polygonjs-engine

Version:

node-based webgl 3D engine https://polygonjs.com

15 lines (14 loc) 242 B
export class ImportReport { constructor(_scene_importer) { this._warnings = []; } warnings() { return this._warnings; } reset() { this._warnings = []; } add_warning(message) { this._warnings.push(message); } }