23 lines
206 B
JavaScript
23 lines
206 B
JavaScript
|
export class FullscreenEffect
|
||
|
{
|
||
|
static NAME = '';
|
||
|
|
||
|
constructor(canvas)
|
||
|
{
|
||
|
this.canvas = canvas;
|
||
|
}
|
||
|
|
||
|
update(timestamp)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
render(context)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
getName()
|
||
|
{
|
||
|
return this.constructor.NAME;
|
||
|
}
|
||
|
}
|