Add todo list
This commit is contained in:
@@ -119,3 +119,11 @@ Delete your `.sitegen_cache` file.
|
|||||||
* use sitecache with pandoc renderer
|
* use sitecache with pandoc renderer
|
||||||
* draft documents
|
* draft documents
|
||||||
* treesitter highlighting for moonscript
|
* treesitter highlighting for moonscript
|
||||||
|
|
||||||
|
## todo
|
||||||
|
|
||||||
|
* add more than one ship
|
||||||
|
* make corners not bouncy
|
||||||
|
* increase ship radius
|
||||||
|
* add a Draw system?
|
||||||
|
* wall entities
|
||||||
|
|||||||
@@ -685,7 +685,7 @@ const Move = (() => {
|
|||||||
|
|
||||||
return [...edgeColl, ...cornerColl];
|
return [...edgeColl, ...cornerColl];
|
||||||
}
|
}
|
||||||
// Math.round(3.141592653589793e+15 / 1)
|
|
||||||
function vector(x, y) {
|
function vector(x, y) {
|
||||||
const vector = { x: x, y: y };
|
const vector = { x: x, y: y };
|
||||||
vector.magnitude = Math.sqrt(x**2+y**2);
|
vector.magnitude = Math.sqrt(x**2+y**2);
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 49 KiB After Width: | Height: | Size: 49 KiB |
Reference in New Issue
Block a user