80 lines
3.4 KiB
C#
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(0, "ModifierData", "modifier", "ModifierData", 120, false)]
|
|
public ModifierData modifier;
|
|
[DNAFieldAttribute(1, "Object", "*start_cap", "Object", 8, true)]
|
|
public Object ptr_start_cap;
|
|
[DNAFieldAttribute(2, "Object", "*end_cap", "Object", 8, true)]
|
|
public Object ptr_end_cap;
|
|
[DNAFieldAttribute(3, "Object", "*curve_ob", "Object", 8, true)]
|
|
public Object ptr_curve_ob;
|
|
[DNAFieldAttribute(4, "Object", "*offset_ob", "Object", 8, true)]
|
|
public Object ptr_offset_ob;
|
|
[DNAFieldAttribute(5, "float", "offset[3]", "System.Single[]", 12, false)]
|
|
public float[] offset = new System.Single[3];
|
|
[DNAFieldAttribute(6, "float", "scale[3]", "System.Single[]", 12, false)]
|
|
public float[] scale = new System.Single[3];
|
|
[DNAFieldAttribute(7, "float", "length", "float", 4, false)]
|
|
public float length;
|
|
[DNAFieldAttribute(8, "float", "merge_dist", "float", 4, false)]
|
|
public float merge_dist;
|
|
[DNAFieldAttribute(9, "int", "fit_type", "int", 4, false)]
|
|
public int fit_type;
|
|
[DNAFieldAttribute(10, "int", "offset_type", "int", 4, false)]
|
|
public int offset_type;
|
|
[DNAFieldAttribute(11, "int", "flags", "int", 4, false)]
|
|
public int flags;
|
|
[DNAFieldAttribute(12, "int", "count", "int", 4, false)]
|
|
public int count;
|
|
[DNAFieldAttribute(13, "float", "uv_offset[2]", "System.Single[]", 8, false)]
|
|
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.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 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) {
|
|
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.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;
|
|
}
|
|
}
|
|
}
|