Files
pepperplus-ui/src/pages/VisProgPage/visualProgrammingUI/nodes/GoalNode.default.ts

12 lines
274 B
TypeScript

import type { GoalNodeData } from "./GoalNode";
/**
* Default data for this node
*/
export const GoalNodeDefaults: GoalNodeData = {
label: "Goal Node",
droppable: true,
description: "The robot will strive towards this goal",
achieved: false,
hasReduce: true,
};