38 lines
1.4 KiB
C#
38 lines
1.4 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 LaplacianDeformModifierData {
|
|
public ModifierData modifier;
|
|
public char[] anchor_grp_name = new System.Char[64];
|
|
public int total_verts;
|
|
public int repeat;
|
|
public float ptr_vertexco;
|
|
public object ptr_cache_system;
|
|
public short flag;
|
|
public char[] _pad = new System.Char[6];
|
|
public LaplacianDeformModifierData(ModifierData modifier, char[] anchor_grp_name, int total_verts, int repeat, float ptr_vertexco, object ptr_cache_system, short flag, char[] _pad) {
|
|
this.modifier = modifier;
|
|
this.anchor_grp_name = anchor_grp_name;
|
|
this.total_verts = total_verts;
|
|
this.repeat = repeat;
|
|
this.ptr_vertexco = ptr_vertexco;
|
|
this.ptr_cache_system = ptr_cache_system;
|
|
this.flag = flag;
|
|
this._pad = _pad;
|
|
}
|
|
}
|
|
}
|