interface Prefab {
    actions?: PrefabAction[];
    beforeCreate?: string;
    category: string;
    description?: string;
    icon: Icon;
    interactions?: PrefabInteraction[];
    keywords?: string[];
    name: string;
    structure: PrefabReference[];
    type?: string;
    variables?: PrefabVariable[];
}

Properties

actions?: PrefabAction[]
beforeCreate?: string
category: string
description?: string
icon: Icon
interactions?: PrefabInteraction[]
keywords?: string[]
name: string
structure: PrefabReference[]
type?: string
variables?: PrefabVariable[]