27 lines
229 B
JavaScript
27 lines
229 B
JavaScript
export class FullscreenEffect
|
|
{
|
|
static NAME = '';
|
|
|
|
constructor(canvas)
|
|
{
|
|
this.canvas = canvas;
|
|
}
|
|
|
|
init()
|
|
{
|
|
}
|
|
|
|
update(timestamp)
|
|
{
|
|
}
|
|
|
|
render(context, camera)
|
|
{
|
|
}
|
|
|
|
getName()
|
|
{
|
|
return this.constructor.NAME;
|
|
}
|
|
}
|