mirror of
https://github.com/litruv/picoGraph.git
synced 2026-07-24 10:46:06 +10:00
Initial commit
moved from private version control
This commit is contained in:
20
scripts/nodes/library/map/index.js
Normal file
20
scripts/nodes/library/map/index.js
Normal file
@@ -0,0 +1,20 @@
|
||||
import { mapMgetNode } from "./mget.js";
|
||||
import { mapMsetNode } from "./mset.js";
|
||||
import { mapDrawNode } from "./map.js";
|
||||
import { mapTlineNode } from "./tline.js";
|
||||
|
||||
/**
|
||||
* All map-related node modules backed by PICO-8 helpers.
|
||||
*/
|
||||
export const mapNodes = [mapMgetNode, mapMsetNode, mapDrawNode, mapTlineNode];
|
||||
|
||||
/**
|
||||
* Checklist tracking coverage of documented map helpers.
|
||||
* @type {Array<{ function: string, nodeId: string, implemented: boolean }>}
|
||||
*/
|
||||
export const mapFunctionChecklist = [
|
||||
{ function: "MGET", nodeId: "map_mget", implemented: true },
|
||||
{ function: "MSET", nodeId: "map_mset", implemented: true },
|
||||
{ function: "MAP", nodeId: "map_map", implemented: true },
|
||||
{ function: "TLINE", nodeId: "map_tline", implemented: true },
|
||||
];
|
||||
Reference in New Issue
Block a user