Updated TODO
parent
001c74ba6a
commit
eaa00a63f5
5
TODO.md
5
TODO.md
|
@ -73,7 +73,6 @@
|
||||||
- Frame timings (compute/render/physics/etc)
|
- Frame timings (compute/render/physics/etc)
|
||||||
- Elegantly handle lost focus
|
- Elegantly handle lost focus
|
||||||
- Pause game
|
- Pause game
|
||||||
- Better player controller? (only one shipbehavior needs inputs)
|
|
||||||
- Clear all `// TODO:` comments littered in the source
|
- Clear all `// TODO:` comments littered in the source
|
||||||
- CLI options (debug, save location, content location, check content)
|
- CLI options (debug, save location, content location, check content)
|
||||||
- Config file and compile options, remove all those consts.
|
- Config file and compile options, remove all those consts.
|
||||||
|
@ -81,6 +80,10 @@
|
||||||
- Sprite optimization: do we need to allocate a new `Vec` every frame? Probably not.
|
- Sprite optimization: do we need to allocate a new `Vec` every frame? Probably not.
|
||||||
- Better error when run outside of directory
|
- Better error when run outside of directory
|
||||||
- Documentation site & front page
|
- Documentation site & front page
|
||||||
|
- Random animation age for objects * ui
|
||||||
|
- Random animation delay/fps?
|
||||||
|
- Fade between animation frames
|
||||||
|
- Better WGSL preprocessor (warning when including a bad file!)
|
||||||
|
|
||||||
## Content
|
## Content
|
||||||
- Angled engines
|
- Angled engines
|
||||||
|
|
|
@ -28,11 +28,6 @@ var sampler_array: binding_array<sampler>;
|
||||||
|
|
||||||
// INCLUDE: animate.wgsl
|
// INCLUDE: animate.wgsl
|
||||||
|
|
||||||
// TODO: random age
|
|
||||||
// TODO: configure packed asset location, better error
|
|
||||||
// TODO: bounce animations
|
|
||||||
// TODO: animation randomness?
|
|
||||||
|
|
||||||
@vertex
|
@vertex
|
||||||
fn vertex_main(
|
fn vertex_main(
|
||||||
vertex: VertexInput,
|
vertex: VertexInput,
|
||||||
|
|
Loading…
Reference in New Issue