diff --git a/index.js b/index.js index a054106..b529b82 100644 --- a/index.js +++ b/index.js @@ -123,6 +123,8 @@ async function loadImageData(url) { window.requestAnimationFrame(frame); }); })(); +// TODO: The canvas should take the entire screen +// TODO: Hot reload assets // TODO: Try lighting with normal maps that come with some of the assets // TODO: Load assets asynchronously // While a texture is loading, replace it with a color tile. diff --git a/index.ts b/index.ts index 74b26c5..4480afd 100644 --- a/index.ts +++ b/index.ts @@ -106,6 +106,8 @@ async function loadImageData(url: string): Promise { window.requestAnimationFrame(frame); }); })(); +// TODO: The canvas should take the entire screen +// TODO: Hot reload assets // TODO: Try lighting with normal maps that come with some of the assets // TODO: Load assets asynchronously // While a texture is loading, replace it with a color tile.