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

54 lines
2.2 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 CorrectiveSmoothModifierData {
[DNAFieldAttribute(0, "ModifierData", "modifier", 120)]
public ModifierData modifier;
[DNAFieldAttribute(2, "int", "bind_coords_num", 4)]
public int bind_coords_num;
[DNAFieldAttribute(3, "float", "lambda", 4)]
public float lambda;
[DNAFieldAttribute(4, "float", "scale", 4)]
public float scale;
[DNAFieldAttribute(5, "short", "repeat", 2)]
public short repeat;
[DNAFieldAttribute(6, "short", "flag", 2)]
public short flag;
[DNAFieldAttribute(7, "char", "smooth_type", 1)]
public char smooth_type;
[DNAFieldAttribute(8, "char", "rest_source", 1)]
public char rest_source;
[DNAFieldAttribute(9, "char", "_pad[6]", 1)]
public char[] _pad = new System.Char[6];
[DNAFieldAttribute(10, "char", "defgrp_name[64]", 1)]
public char[] defgrp_name = new System.Char[64];
[DNAFieldAttribute(11, "CorrectiveSmoothDeltaCache", "delta_cache", 32)]
public CorrectiveSmoothDeltaCache delta_cache;
public CorrectiveSmoothModifierData(ModifierData modifier, int bind_coords_num, float lambda, float scale, short repeat, short flag, char smooth_type, char rest_source, char[] _pad, char[] defgrp_name, CorrectiveSmoothDeltaCache delta_cache) {
this.modifier = modifier;
this.bind_coords_num = bind_coords_num;
this.lambda = lambda;
this.scale = scale;
this.repeat = repeat;
this.flag = flag;
this.smooth_type = smooth_type;
this.rest_source = rest_source;
this._pad = _pad;
this.defgrp_name = defgrp_name;
this.delta_cache = delta_cache;
}
}
}