Files
BlenderSharp/BlendFile/DNA/MeshDeformModifierData.cs
2025-01-22 20:24:55 +01:00

105 lines
4.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 System;
namespace BlendFile.DNA {
using BlendFile;
public class MeshDeformModifierData {
[DNAFieldAttribute(0, "ModifierData", "modifier", 120)]
public ModifierData modifier;
[DNAFieldAttribute(1, "Object", "*object", 1160)]
public Object ptr_object;
[DNAFieldAttribute(2, "char", "defgrp_name[64]", 1)]
public char[] defgrp_name = new System.Char[64];
[DNAFieldAttribute(3, "short", "gridsize", 2)]
public short gridsize;
[DNAFieldAttribute(4, "short", "flag", 2)]
public short flag;
[DNAFieldAttribute(5, "char", "_pad[4]", 1)]
public char[] _pad = new System.Char[4];
[DNAFieldAttribute(6, "MDefInfluence", "*bindinfluences", 8)]
public MDefInfluence ptr_bindinfluences;
[DNAFieldAttribute(7, "int", "*bindoffsets", 4)]
public int ptr_bindoffsets;
[DNAFieldAttribute(8, "float", "*bindcagecos", 4)]
public float ptr_bindcagecos;
[DNAFieldAttribute(9, "int", "totvert", 4)]
public int totvert;
[DNAFieldAttribute(10, "int", "totcagevert", 4)]
public int totcagevert;
[DNAFieldAttribute(11, "MDefCell", "*dyngrid", 8)]
public MDefCell ptr_dyngrid;
[DNAFieldAttribute(12, "MDefInfluence", "*dyninfluences", 8)]
public MDefInfluence ptr_dyninfluences;
[DNAFieldAttribute(13, "int", "*dynverts", 4)]
public int ptr_dynverts;
[DNAFieldAttribute(14, "int", "dyngridsize", 4)]
public int dyngridsize;
[DNAFieldAttribute(15, "int", "totinfluence", 4)]
public int totinfluence;
[DNAFieldAttribute(16, "float", "dyncellmin[3]", 4)]
public float[] dyncellmin = new System.Single[3];
[DNAFieldAttribute(17, "float", "dyncellwidth", 4)]
public float dyncellwidth;
[DNAFieldAttribute(18, "float", "bindmat[4][4]", 4)]
public float[,] bindmat = new System.Single[4,4];
[DNAFieldAttribute(19, "float", "*bindweights", 4)]
public float ptr_bindweights;
[DNAFieldAttribute(20, "float", "*bindcos", 4)]
public float ptr_bindcos;
public MeshDeformModifierData(
ModifierData modifier,
Object ptr_object,
char[] defgrp_name,
short gridsize,
short flag,
char[] _pad,
MDefInfluence ptr_bindinfluences,
int ptr_bindoffsets,
float ptr_bindcagecos,
int totvert,
int totcagevert,
MDefCell ptr_dyngrid,
MDefInfluence ptr_dyninfluences,
int ptr_dynverts,
int dyngridsize,
int totinfluence,
float[] dyncellmin,
float dyncellwidth,
float[,] bindmat,
float ptr_bindweights,
float ptr_bindcos) {
this.modifier = modifier;
this.ptr_object = ptr_object;
this.defgrp_name = defgrp_name;
this.gridsize = gridsize;
this.flag = flag;
this._pad = _pad;
this.ptr_bindinfluences = ptr_bindinfluences;
this.ptr_bindoffsets = ptr_bindoffsets;
this.ptr_bindcagecos = ptr_bindcagecos;
this.totvert = totvert;
this.totcagevert = totcagevert;
this.ptr_dyngrid = ptr_dyngrid;
this.ptr_dyninfluences = ptr_dyninfluences;
this.ptr_dynverts = ptr_dynverts;
this.dyngridsize = dyngridsize;
this.totinfluence = totinfluence;
this.dyncellmin = dyncellmin;
this.dyncellwidth = dyncellwidth;
this.bindmat = bindmat;
this.ptr_bindweights = ptr_bindweights;
this.ptr_bindcos = ptr_bindcos;
}
}
}