From 47e050b4a851d0de37fbb0b3c3a1e45c169754f4 Mon Sep 17 00:00:00 2001 From: rexim Date: Tue, 2 Jul 2024 08:26:30 +0700 Subject: [PATCH] Add more TODOs --- index.js | 2 ++ index.ts | 2 ++ 2 files changed, 4 insertions(+) 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.