Files
BlenderSharp/BlendFile/DNA/ArrayModifierData.cs
2025-03-12 19:02:40 +01:00

80 lines
3.4 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;
[DNAClassAttribute(451, "ArrayModifierData", 208)]
public class ArrayModifierData {
[DNAFieldAttribute(120, "ModifierData", 0, "modifier", "ModifierData", false, 0)]
public ModifierData modifier;
[DNAFieldAttribute(8, "Object", 1, "*start_cap", "Object", true, 120)]
public Object start_cap;
[DNAFieldAttribute(8, "Object", 2, "*end_cap", "Object", true, 128)]
public Object end_cap;
[DNAFieldAttribute(8, "Object", 3, "*curve_ob", "Object", true, 136)]
public Object curve_ob;
[DNAFieldAttribute(8, "Object", 4, "*offset_ob", "Object", true, 144)]
public Object offset_ob;
[DNAArrayAttribute(12, "float", 5, "offset[3]", "System.Single[]", 3, false, 152)]
public float[] offset = new System.Single[3];
[DNAArrayAttribute(12, "float", 6, "scale[3]", "System.Single[]", 3, false, 164)]
public float[] scale = new System.Single[3];
[DNAFieldAttribute(4, "float", 7, "length", "float", false, 176)]
public float length;
[DNAFieldAttribute(4, "float", 8, "merge_dist", "float", false, 180)]
public float merge_dist;
[DNAFieldAttribute(4, "int", 9, "fit_type", "int", false, 184)]
public int fit_type;
[DNAFieldAttribute(4, "int", 10, "offset_type", "int", false, 188)]
public int offset_type;
[DNAFieldAttribute(4, "int", 11, "flags", "int", false, 192)]
public int flags;
[DNAFieldAttribute(4, "int", 12, "count", "int", false, 196)]
public int count;
[DNAArrayAttribute(8, "float", 13, "uv_offset[2]", "System.Single[]", 2, false, 200)]
public float[] uv_offset = new System.Single[2];
public ArrayModifierData() {
this.modifier = default;
this.start_cap = default;
this.end_cap = default;
this.curve_ob = default;
this.offset_ob = default;
this.offset = default;
this.scale = default;
this.length = default;
this.merge_dist = default;
this.fit_type = default;
this.offset_type = default;
this.flags = default;
this.count = default;
this.uv_offset = default;
}
public ArrayModifierData(ModifierData modifier, Object start_cap, Object end_cap, Object curve_ob, Object offset_ob, float[] offset, float[] scale, float length, float merge_dist, int fit_type, int offset_type, int flags, int count, float[] uv_offset) {
this.modifier = modifier;
this.start_cap = start_cap;
this.end_cap = end_cap;
this.curve_ob = curve_ob;
this.offset_ob = offset_ob;
this.offset = offset;
this.scale = scale;
this.length = length;
this.merge_dist = merge_dist;
this.fit_type = fit_type;
this.offset_type = offset_type;
this.flags = flags;
this.count = count;
this.uv_offset = uv_offset;
}
}
}