mirror of
https://git.leinelab.org/Mal/mr-crocs-adventures.git
synced 2025-09-11 02:57:36 +02:00
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;
|
|
}
|
|
}
|