mr-crocs-adventures/js/effects/FullscreenEffect.js

27 lines
229 B
JavaScript
Raw Normal View History

2024-12-08 16:53:56 +01:00
export class FullscreenEffect
{
static NAME = '';
constructor(canvas)
{
this.canvas = canvas;
}
2024-12-14 12:09:49 +01:00
init()
{
}
2024-12-08 16:53:56 +01:00
update(timestamp)
{
}
2024-12-14 12:09:49 +01:00
render(context, camera)
2024-12-08 16:53:56 +01:00
{
}
getName()
{
return this.constructor.NAME;
}
}