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:
33
scripts/nodes/library/data/dget.js
Normal file
33
scripts/nodes/library/data/dget.js
Normal file
@@ -0,0 +1,33 @@
|
||||
import { createNodeModule } from "../../nodeTypes.js";
|
||||
|
||||
/**
|
||||
* Reads a persistent value using dget.
|
||||
*/
|
||||
export const dgetNode = createNodeModule(
|
||||
{
|
||||
id: "data_dget",
|
||||
title: "Data Get",
|
||||
category: "Data",
|
||||
description: "Retrieve a persistent number using DGET().",
|
||||
searchTags: ["dget", "load", "data", "persistent"],
|
||||
inputs: [
|
||||
{
|
||||
id: "index",
|
||||
name: "Index",
|
||||
direction: "input",
|
||||
kind: "number",
|
||||
defaultValue: 0,
|
||||
},
|
||||
],
|
||||
outputs: [
|
||||
{ id: "value", name: "Value", direction: "output", kind: "number" },
|
||||
],
|
||||
properties: [],
|
||||
},
|
||||
{
|
||||
evaluateValue: ({ resolveValueInput }) => {
|
||||
const index = resolveValueInput("index", "0");
|
||||
return `dget(${index})`;
|
||||
},
|
||||
}
|
||||
);
|
||||
Reference in New Issue
Block a user