Files
BlenderSharp/BlendFile/DNA/ArrayModifierData.cs
2025-01-22 02:23:29 +01:00

37 lines
1.5 KiB
C#

// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public class ArrayModifierData {
public ModifierData modifier;
public Object ptr_start_cap;
public Object ptr_end_cap;
public Object ptr_curve_ob;
public Object ptr_offset_ob;
public float[] offset = new System.Single[3];
public float[] scale = new System.Single[3];
public float length;
public float merge_dist;
public int fit_type;
public int offset_type;
public int flags;
public int count;
public float[] uv_offset = new System.Single[2];
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;
}
}
}