52 lines
1.9 KiB
C#
52 lines
1.9 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(448, "CurveModifierData")]
|
|
public class CurveModifierData {
|
|
[DNAFieldAttribute(0, "ModifierData", "modifier", "ModifierData", 120)]
|
|
public ModifierData modifier;
|
|
[DNAFieldAttribute(1, "Object", "*object", "Object", 1160)]
|
|
public Object ptr_object;
|
|
[DNAFieldAttribute(2, "char", "name[64]", "System.Char[]", 1)]
|
|
public char[] name = new System.Char[64];
|
|
[DNAFieldAttribute(3, "short", "defaxis", "short", 2)]
|
|
public short defaxis;
|
|
[DNAFieldAttribute(4, "short", "flag", "short", 2)]
|
|
public short flag;
|
|
[DNAFieldAttribute(5, "char", "_pad[4]", "System.Char[]", 1)]
|
|
public char[] _pad = new System.Char[4];
|
|
[DNAFieldAttribute(6, "void", "*_pad1", "void", 0)]
|
|
public object ptr__pad1;
|
|
public CurveModifierData() {
|
|
this.modifier = default;
|
|
this.ptr_object = default;
|
|
this.name = default;
|
|
this.defaxis = default;
|
|
this.flag = default;
|
|
this._pad = default;
|
|
this.ptr__pad1 = default;
|
|
}
|
|
public CurveModifierData(ModifierData modifier, Object ptr_object, char[] name, short defaxis, short flag, char[] _pad, object ptr__pad1) {
|
|
this.modifier = modifier;
|
|
this.ptr_object = ptr_object;
|
|
this.name = name;
|
|
this.defaxis = defaxis;
|
|
this.flag = flag;
|
|
this._pad = _pad;
|
|
this.ptr__pad1 = ptr__pad1;
|
|
}
|
|
}
|
|
}
|