Files
BlenderSharp/BlendFile/DNA/bSameVolumeConstraint.cs
2025-03-12 19:02:40 +01:00

40 lines
1.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;
[DNAClassAttribute(183, "bSameVolumeConstraint", 8)]
public class bSameVolumeConstraint {
[DNAFieldAttribute(1, "char", 0, "flag", "char", false, 0)]
public char flag;
[DNAFieldAttribute(1, "char", 1, "mode", "char", false, 1)]
public char mode;
[DNAArrayAttribute(2, "char", 2, "_pad[2]", "System.Char[]", 2, false, 2)]
public char[] _pad = new System.Char[2];
[DNAFieldAttribute(4, "float", 3, "volume", "float", false, 4)]
public float volume;
public bSameVolumeConstraint() {
this.flag = default;
this.mode = default;
this._pad = default;
this.volume = default;
}
public bSameVolumeConstraint(char flag, char mode, char[] _pad, float volume) {
this.flag = flag;
this.mode = mode;
this._pad = _pad;
this.volume = volume;
}
}
}