96 lines
3.8 KiB
C#
96 lines
3.8 KiB
C#
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
|
|
namespace BlendFile.DNA {
|
|
|
|
public class bNodeTree {
|
|
public ID id;
|
|
public AnimData ptr_adt;
|
|
public ID ptr_owner_id;
|
|
public bNodeTreeTypeHandle ptr_typeinfo;
|
|
public char[] idname = new System.Char[64];
|
|
public char ptr_description;
|
|
public bGPdata ptr_gpd;
|
|
public float[] view_center = new System.Single[2];
|
|
public ListBase nodes;
|
|
public ListBase links;
|
|
public int type;
|
|
public int cur_index;
|
|
public int flag;
|
|
public int chunksize;
|
|
public int execution_mode;
|
|
public int precision;
|
|
public int color_tag;
|
|
public int default_group_node_width;
|
|
public rctf viewer_border;
|
|
public ListBase inputs;
|
|
public ListBase outputs;
|
|
public bNodeTreeInterface tree_interface;
|
|
public NodeInstanceHashHandle ptr_previews;
|
|
public bNodeInstanceKey active_viewer_key;
|
|
public int nested_node_refs_num;
|
|
public bNestedNodeRef ptr_nested_node_refs;
|
|
public GeometryNodeAssetTraits ptr_geometry_node_asset_traits;
|
|
public PreviewImage ptr_preview;
|
|
public bNodeTreeRuntimeHandle ptr_runtime;
|
|
public bNodeTree(
|
|
ID id,
|
|
AnimData ptr_adt,
|
|
ID ptr_owner_id,
|
|
bNodeTreeTypeHandle ptr_typeinfo,
|
|
char[] idname,
|
|
char ptr_description,
|
|
bGPdata ptr_gpd,
|
|
float[] view_center,
|
|
ListBase nodes,
|
|
ListBase links,
|
|
int type,
|
|
int cur_index,
|
|
int flag,
|
|
int chunksize,
|
|
int execution_mode,
|
|
int precision,
|
|
int color_tag,
|
|
int default_group_node_width,
|
|
rctf viewer_border,
|
|
ListBase inputs,
|
|
ListBase outputs,
|
|
bNodeTreeInterface tree_interface,
|
|
NodeInstanceHashHandle ptr_previews,
|
|
bNodeInstanceKey active_viewer_key,
|
|
int nested_node_refs_num,
|
|
bNestedNodeRef ptr_nested_node_refs,
|
|
GeometryNodeAssetTraits ptr_geometry_node_asset_traits,
|
|
PreviewImage ptr_preview,
|
|
bNodeTreeRuntimeHandle ptr_runtime) {
|
|
this.id = id;
|
|
this.ptr_adt = ptr_adt;
|
|
this.ptr_owner_id = ptr_owner_id;
|
|
this.ptr_typeinfo = ptr_typeinfo;
|
|
this.idname = idname;
|
|
this.ptr_description = ptr_description;
|
|
this.ptr_gpd = ptr_gpd;
|
|
this.view_center = view_center;
|
|
this.nodes = nodes;
|
|
this.links = links;
|
|
this.type = type;
|
|
this.cur_index = cur_index;
|
|
this.flag = flag;
|
|
this.chunksize = chunksize;
|
|
this.execution_mode = execution_mode;
|
|
this.precision = precision;
|
|
this.color_tag = color_tag;
|
|
this.default_group_node_width = default_group_node_width;
|
|
this.viewer_border = viewer_border;
|
|
this.inputs = inputs;
|
|
this.outputs = outputs;
|
|
this.tree_interface = tree_interface;
|
|
this.ptr_previews = ptr_previews;
|
|
this.active_viewer_key = active_viewer_key;
|
|
this.nested_node_refs_num = nested_node_refs_num;
|
|
this.ptr_nested_node_refs = ptr_nested_node_refs;
|
|
this.ptr_geometry_node_asset_traits = ptr_geometry_node_asset_traits;
|
|
this.ptr_preview = ptr_preview;
|
|
this.ptr_runtime = ptr_runtime;
|
|
}
|
|
}
|
|
}
|