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