@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
35 lines (32 loc) • 572 B
JavaScript
/**
* @abstract
*/
export class ProbeRenderer {
/**
*
* @param {EntityComponentDataset} ecd
* @abstract
*/
build_scene(ecd) {
}
/**
* @abstract
*/
async bake_start() {
}
/**
* @abstract
*/
bake_end() {
}
/**
*
* @param {number[]} position
* @param {number} position_offset
* @param {number[]} output
* @param {number} output_offset
* @abstract
*/
bake(position, position_offset, output, output_offset) {
}
}