34 lines
1.1 KiB
C#
34 lines
1.1 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 01/22/2025 16:57:57
|
|
|
|
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 char[] defgrp_name = new System.Char[64];
|
|
public ArmatureModifierData(ModifierData modifier, short deformflag, short multi, char[] _pad2, Object ptr_object, char[] defgrp_name) {
|
|
this.modifier = modifier;
|
|
this.deformflag = deformflag;
|
|
this.multi = multi;
|
|
this._pad2 = _pad2;
|
|
this.ptr_object = ptr_object;
|
|
this.defgrp_name = defgrp_name;
|
|
}
|
|
}
|
|
}
|