Files
BlenderSharp/BlendFile/DNA/bNodeTree.cs
Samuele Lorefice 439cea385f Regenerated files
2025-01-22 18:11:19 +01:00

107 lines
4.1 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
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;
}
}
}