//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ using System; namespace BlendFile.DNA { using BlendFile; public class CastModifierData { [DNAFieldAttribute(0, "ModifierData", "modifier", 120)] public ModifierData modifier; [DNAFieldAttribute(1, "Object", "*object", 1160)] public Object ptr_object; [DNAFieldAttribute(2, "float", "fac", 4)] public float fac; [DNAFieldAttribute(3, "float", "radius", 4)] public float radius; [DNAFieldAttribute(4, "float", "size", 4)] public float size; [DNAFieldAttribute(5, "char", "defgrp_name[64]", 1)] public char[] defgrp_name = new System.Char[64]; [DNAFieldAttribute(6, "short", "flag", 2)] public short flag; [DNAFieldAttribute(7, "short", "type", 2)] public short type; [DNAFieldAttribute(8, "void", "*_pad1", 0)] public object ptr__pad1; public CastModifierData(ModifierData modifier, Object ptr_object, float fac, float radius, float size, char[] defgrp_name, short flag, short type, object ptr__pad1) { this.modifier = modifier; this.ptr_object = ptr_object; this.fac = fac; this.radius = radius; this.size = size; this.defgrp_name = defgrp_name; this.flag = flag; this.type = type; this.ptr__pad1 = ptr__pad1; } } }