Interface INodeInputSlot

interface INodeInputSlot {
    _data?: any;
    color_off?: string;
    color_on?: string;
    dir?: Dir;
    label?: string;
    link: LinkID;
    locked?: boolean;
    name: string;
    nameLocked?: boolean;
    not_subgraph_input?: boolean;
    optional?: boolean;
    pos?: Vector2;
    properties: Record<string, any>;
    removable?: boolean;
    shape?: number;
    slot_index?: number;
    type: SlotType;
}

Hierarchy (view full)

Properties

_data?: any
color_off?: string
color_on?: string
dir?: Dir
label?: string
link: LinkID
locked?: boolean
name: string
nameLocked?: boolean
not_subgraph_input?: boolean
optional?: boolean
pos?: Vector2
properties: Record<string, any>
removable?: boolean
shape?: number
slot_index?: number
type: SlotType