48 lines
1.8 KiB
C#
48 lines
1.8 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 {
|
|
|
|
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;
|
|
}
|
|
}
|
|
}
|