Files
BlenderSharp/BlendFile/DNA/SDefBind.cs
2025-02-19 18:48:50 +01:00

48 lines
1.7 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(510, "SDefBind", 32)]
public class SDefBind {
[DNAFieldAttribute(0, "int", "*vert_inds", "int", 8, true)]
public int ptr_vert_inds;
[DNAFieldAttribute(1, "int", "numverts", "int", 4, false)]
public int numverts;
[DNAFieldAttribute(2, "int", "mode", "int", 4, false)]
public int mode;
[DNAFieldAttribute(3, "float", "*vert_weights", "float", 8, true)]
public float ptr_vert_weights;
[DNAFieldAttribute(4, "float", "normal_dist", "float", 4, false)]
public float normal_dist;
[DNAFieldAttribute(5, "float", "influence", "float", 4, false)]
public float influence;
public SDefBind() {
this.ptr_vert_inds = default;
this.numverts = default;
this.mode = default;
this.ptr_vert_weights = default;
this.normal_dist = default;
this.influence = default;
}
public SDefBind(int ptr_vert_inds, int numverts, int mode, float ptr_vert_weights, float normal_dist, float influence) {
this.ptr_vert_inds = ptr_vert_inds;
this.numverts = numverts;
this.mode = mode;
this.ptr_vert_weights = ptr_vert_weights;
this.normal_dist = normal_dist;
this.influence = influence;
}
}
}