Files
BlenderSharp/BlendFile/DNA/ArmatureModifierData.cs

36 lines
1.3 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 BlendFile.CompatTypes;
using System;
// Automatically generated by BlenderSharp at 22/01/2025 02:33:14
namespace BlendFile.DNA {
public class ArmatureModifierData {
public ModifierData modifier;
public short deformflag;
public short multi;
public char[] _pad2 = new System.Char[4];
public Object ptr_object;
public float (ptr_vert_coords_prev)();
public char[] defgrp_name = new System.Char[64];
public ArmatureModifierData(ModifierData modifier, short deformflag, short multi, char[] _pad2, Object ptr_object, float (ptr_vert_coords_prev)(), char[] defgrp_name) {
this.modifier = modifier;
this.deformflag = deformflag;
this.multi = multi;
this._pad2 = _pad2;
this.ptr_object = ptr_object;
this.(ptr_vert_coords_prev)() = (ptr_vert_coords_prev)();
this.defgrp_name = defgrp_name;
}
}
}