Files
BlenderSharp/BlendFile/DNA/GreasePencilLineartModifierData.cs
2025-01-22 20:24:55 +01:00

197 lines
9.3 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 {
using BlendFile;
public class GreasePencilLineartModifierData {
[DNAFieldAttribute(0, "ModifierData", "modifier", 120)]
public ModifierData modifier;
[DNAFieldAttribute(1, "ushort", "edge_types", 2)]
public ushort edge_types;
[DNAFieldAttribute(2, "char", "source_type", 1)]
public char source_type;
[DNAFieldAttribute(3, "char", "use_multiple_levels", 1)]
public char use_multiple_levels;
[DNAFieldAttribute(4, "short", "level_start", 2)]
public short level_start;
[DNAFieldAttribute(5, "short", "level_end", 2)]
public short level_end;
[DNAFieldAttribute(6, "Object", "*source_camera", 1160)]
public Object ptr_source_camera;
[DNAFieldAttribute(7, "Object", "*light_contour_object", 1160)]
public Object ptr_light_contour_object;
[DNAFieldAttribute(8, "Object", "*source_object", 1160)]
public Object ptr_source_object;
[DNAFieldAttribute(9, "Collection", "*source_collection", 376)]
public Collection ptr_source_collection;
[DNAFieldAttribute(10, "Material", "*target_material", 392)]
public Material ptr_target_material;
[DNAFieldAttribute(11, "char", "target_layer[64]", 1)]
public char[] target_layer = new System.Char[64];
[DNAFieldAttribute(12, "char", "source_vertex_group[64]", 1)]
public char[] source_vertex_group = new System.Char[64];
[DNAFieldAttribute(13, "char", "vgname[64]", 1)]
public char[] vgname = new System.Char[64];
[DNAFieldAttribute(14, "float", "overscan", 4)]
public float overscan;
[DNAFieldAttribute(15, "float", "shadow_camera_fov", 4)]
public float shadow_camera_fov;
[DNAFieldAttribute(16, "float", "shadow_camera_size", 4)]
public float shadow_camera_size;
[DNAFieldAttribute(17, "float", "shadow_camera_near", 4)]
public float shadow_camera_near;
[DNAFieldAttribute(18, "float", "shadow_camera_far", 4)]
public float shadow_camera_far;
[DNAFieldAttribute(19, "float", "opacity", 4)]
public float opacity;
[DNAFieldAttribute(20, "short", "thickness", 2)]
public short thickness;
[DNAFieldAttribute(21, "char", "mask_switches", 1)]
public char mask_switches;
[DNAFieldAttribute(22, "char", "material_mask_bits", 1)]
public char material_mask_bits;
[DNAFieldAttribute(23, "char", "intersection_mask", 1)]
public char intersection_mask;
[DNAFieldAttribute(24, "char", "shadow_selection", 1)]
public char shadow_selection;
[DNAFieldAttribute(25, "char", "silhouette_selection", 1)]
public char silhouette_selection;
[DNAFieldAttribute(26, "char", "_pad[1]", 1)]
public char[] _pad = new System.Char[1];
[DNAFieldAttribute(27, "float", "crease_threshold", 4)]
public float crease_threshold;
[DNAFieldAttribute(28, "float", "angle_splitting_threshold", 4)]
public float angle_splitting_threshold;
[DNAFieldAttribute(29, "float", "chain_smooth_tolerance", 4)]
public float chain_smooth_tolerance;
[DNAFieldAttribute(30, "float", "chaining_image_threshold", 4)]
public float chaining_image_threshold;
[DNAFieldAttribute(31, "int", "calculation_flags", 4)]
public int calculation_flags;
[DNAFieldAttribute(32, "int", "flags", 4)]
public int flags;
[DNAFieldAttribute(33, "float", "stroke_depth_offset", 4)]
public float stroke_depth_offset;
[DNAFieldAttribute(34, "char", "level_start_override", 1)]
public char level_start_override;
[DNAFieldAttribute(35, "char", "level_end_override", 1)]
public char level_end_override;
[DNAFieldAttribute(36, "short", "edge_types_override", 2)]
public short edge_types_override;
[DNAFieldAttribute(37, "char", "shadow_selection_override", 1)]
public char shadow_selection_override;
[DNAFieldAttribute(38, "char", "shadow_use_silhouette_override", 1)]
public char shadow_use_silhouette_override;
[DNAFieldAttribute(39, "char", "_pad2[6]", 1)]
public char[] _pad2 = new System.Char[6];
[DNAFieldAttribute(40, "LineartCache", "*shared_cache", 0)]
public LineartCache ptr_shared_cache;
[DNAFieldAttribute(41, "LineartCache", "*cache", 0)]
public LineartCache ptr_cache;
[DNAFieldAttribute(42, "LineartData", "*la_data_ptr", 0)]
public LineartData ptr_la_data_ptr;
[DNAFieldAttribute(43, "void", "*runtime", 0)]
public object ptr_runtime;
public GreasePencilLineartModifierData(
ModifierData modifier,
ushort edge_types,
char source_type,
char use_multiple_levels,
short level_start,
short level_end,
Object ptr_source_camera,
Object ptr_light_contour_object,
Object ptr_source_object,
Collection ptr_source_collection,
Material ptr_target_material,
char[] target_layer,
char[] source_vertex_group,
char[] vgname,
float overscan,
float shadow_camera_fov,
float shadow_camera_size,
float shadow_camera_near,
float shadow_camera_far,
float opacity,
short thickness,
char mask_switches,
char material_mask_bits,
char intersection_mask,
char shadow_selection,
char silhouette_selection,
char[] _pad,
float crease_threshold,
float angle_splitting_threshold,
float chain_smooth_tolerance,
float chaining_image_threshold,
int calculation_flags,
int flags,
float stroke_depth_offset,
char level_start_override,
char level_end_override,
short edge_types_override,
char shadow_selection_override,
char shadow_use_silhouette_override,
char[] _pad2,
LineartCache ptr_shared_cache,
LineartCache ptr_cache,
LineartData ptr_la_data_ptr,
object ptr_runtime) {
this.modifier = modifier;
this.edge_types = edge_types;
this.source_type = source_type;
this.use_multiple_levels = use_multiple_levels;
this.level_start = level_start;
this.level_end = level_end;
this.ptr_source_camera = ptr_source_camera;
this.ptr_light_contour_object = ptr_light_contour_object;
this.ptr_source_object = ptr_source_object;
this.ptr_source_collection = ptr_source_collection;
this.ptr_target_material = ptr_target_material;
this.target_layer = target_layer;
this.source_vertex_group = source_vertex_group;
this.vgname = vgname;
this.overscan = overscan;
this.shadow_camera_fov = shadow_camera_fov;
this.shadow_camera_size = shadow_camera_size;
this.shadow_camera_near = shadow_camera_near;
this.shadow_camera_far = shadow_camera_far;
this.opacity = opacity;
this.thickness = thickness;
this.mask_switches = mask_switches;
this.material_mask_bits = material_mask_bits;
this.intersection_mask = intersection_mask;
this.shadow_selection = shadow_selection;
this.silhouette_selection = silhouette_selection;
this._pad = _pad;
this.crease_threshold = crease_threshold;
this.angle_splitting_threshold = angle_splitting_threshold;
this.chain_smooth_tolerance = chain_smooth_tolerance;
this.chaining_image_threshold = chaining_image_threshold;
this.calculation_flags = calculation_flags;
this.flags = flags;
this.stroke_depth_offset = stroke_depth_offset;
this.level_start_override = level_start_override;
this.level_end_override = level_end_override;
this.edge_types_override = edge_types_override;
this.shadow_selection_override = shadow_selection_override;
this.shadow_use_silhouette_override = shadow_use_silhouette_override;
this._pad2 = _pad2;
this.ptr_shared_cache = ptr_shared_cache;
this.ptr_cache = ptr_cache;
this.ptr_la_data_ptr = ptr_la_data_ptr;
this.ptr_runtime = ptr_runtime;
}
}
}