Amp-Thread-ID: https://ampcode.com/threads/T-019f9d91-77c1-7206-a60f-ed6554ce92ab Co-authored-by: Heaust Azure <heaust.azure@gmail.com>
44 lines
959 B
TypeScript
44 lines
959 B
TypeScript
import type { FxNodeDefinition } from "@lib/composition/index.js";
|
|
export const joinGeometryNode = [
|
|
"fxnode.geometry.join-geometry",
|
|
{
|
|
version: 1,
|
|
title: "Join Geometry",
|
|
behavior: "standard",
|
|
style: "geometry",
|
|
parameters: {},
|
|
sockets: {
|
|
geometry: {
|
|
title: "Geometry",
|
|
direction: "input",
|
|
type: "geometry",
|
|
maxIncomingLinks: 9007199254740991,
|
|
visible: true,
|
|
value: null,
|
|
showValue: false,
|
|
},
|
|
result: {
|
|
title: "Geometry",
|
|
direction: "output",
|
|
type: "geometry",
|
|
maxIncomingLinks: 0,
|
|
visible: true,
|
|
value: null,
|
|
showValue: false,
|
|
},
|
|
},
|
|
ui: [
|
|
{
|
|
kind: "socket",
|
|
socket: "geometry",
|
|
},
|
|
{
|
|
kind: "socket",
|
|
socket: "result",
|
|
},
|
|
],
|
|
muteBypass: [],
|
|
migrations: [],
|
|
},
|
|
] as const satisfies readonly [string, FxNodeDefinition];
|