Regenerated codefiles
This commit is contained in:
@@ -15,40 +15,40 @@ namespace BlendFile.DNA {
|
||||
|
||||
[DNAClassAttribute(451, "ArrayModifierData", 208)]
|
||||
public class ArrayModifierData {
|
||||
[DNAFieldAttribute(0, "ModifierData", "modifier", "ModifierData", 120, false, 0)]
|
||||
[DNAFieldAttribute(120, "ModifierData", 0, "modifier", "ModifierData", false, 0)]
|
||||
public ModifierData modifier;
|
||||
[DNAFieldAttribute(1, "Object", "*start_cap", "Object", 8, true, 120)]
|
||||
public Object ptr_start_cap;
|
||||
[DNAFieldAttribute(2, "Object", "*end_cap", "Object", 8, true, 128)]
|
||||
public Object ptr_end_cap;
|
||||
[DNAFieldAttribute(3, "Object", "*curve_ob", "Object", 8, true, 136)]
|
||||
public Object ptr_curve_ob;
|
||||
[DNAFieldAttribute(4, "Object", "*offset_ob", "Object", 8, true, 144)]
|
||||
public Object ptr_offset_ob;
|
||||
[DNAFieldAttribute(5, "float", "offset[3]", "System.Single[]", 12, false, 152)]
|
||||
[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;
|
||||
[DNAFieldAttribute(12, "float", 5, "offset[3]", "System.Single[]", false, 152)]
|
||||
public float[] offset = new System.Single[3];
|
||||
[DNAFieldAttribute(6, "float", "scale[3]", "System.Single[]", 12, false, 164)]
|
||||
[DNAFieldAttribute(12, "float", 6, "scale[3]", "System.Single[]", false, 164)]
|
||||
public float[] scale = new System.Single[3];
|
||||
[DNAFieldAttribute(7, "float", "length", "float", 4, false, 176)]
|
||||
[DNAFieldAttribute(4, "float", 7, "length", "float", false, 176)]
|
||||
public float length;
|
||||
[DNAFieldAttribute(8, "float", "merge_dist", "float", 4, false, 180)]
|
||||
[DNAFieldAttribute(4, "float", 8, "merge_dist", "float", false, 180)]
|
||||
public float merge_dist;
|
||||
[DNAFieldAttribute(9, "int", "fit_type", "int", 4, false, 184)]
|
||||
[DNAFieldAttribute(4, "int", 9, "fit_type", "int", false, 184)]
|
||||
public int fit_type;
|
||||
[DNAFieldAttribute(10, "int", "offset_type", "int", 4, false, 188)]
|
||||
[DNAFieldAttribute(4, "int", 10, "offset_type", "int", false, 188)]
|
||||
public int offset_type;
|
||||
[DNAFieldAttribute(11, "int", "flags", "int", 4, false, 192)]
|
||||
[DNAFieldAttribute(4, "int", 11, "flags", "int", false, 192)]
|
||||
public int flags;
|
||||
[DNAFieldAttribute(12, "int", "count", "int", 4, false, 196)]
|
||||
[DNAFieldAttribute(4, "int", 12, "count", "int", false, 196)]
|
||||
public int count;
|
||||
[DNAFieldAttribute(13, "float", "uv_offset[2]", "System.Single[]", 8, false, 200)]
|
||||
[DNAFieldAttribute(8, "float", 13, "uv_offset[2]", "System.Single[]", false, 200)]
|
||||
public float[] uv_offset = new System.Single[2];
|
||||
public ArrayModifierData() {
|
||||
this.modifier = default;
|
||||
this.ptr_start_cap = default;
|
||||
this.ptr_end_cap = default;
|
||||
this.ptr_curve_ob = default;
|
||||
this.ptr_offset_ob = 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;
|
||||
@@ -59,12 +59,12 @@ namespace BlendFile.DNA {
|
||||
this.count = default;
|
||||
this.uv_offset = default;
|
||||
}
|
||||
public ArrayModifierData(ModifierData modifier, Object ptr_start_cap, Object ptr_end_cap, Object ptr_curve_ob, Object ptr_offset_ob, float[] offset, float[] scale, float length, float merge_dist, int fit_type, int offset_type, int flags, int count, float[] uv_offset) {
|
||||
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.ptr_start_cap = ptr_start_cap;
|
||||
this.ptr_end_cap = ptr_end_cap;
|
||||
this.ptr_curve_ob = ptr_curve_ob;
|
||||
this.ptr_offset_ob = ptr_offset_ob;
|
||||
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;
|
||||
|
||||
Reference in New Issue
Block a user