Files
BlenderSharp/BlendFile/DNA/SDefBind.cs

48 lines
1.8 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, 0)]
public int ptr_vert_inds;
[DNAFieldAttribute(1, "int", "numverts", "int", 4, false, 8)]
public int numverts;
[DNAFieldAttribute(2, "int", "mode", "int", 4, false, 12)]
public int mode;
[DNAFieldAttribute(3, "float", "*vert_weights", "float", 8, true, 16)]
public float ptr_vert_weights;
[DNAFieldAttribute(4, "float", "normal_dist", "float", 4, false, 24)]
public float normal_dist;
[DNAFieldAttribute(5, "float", "influence", "float", 4, false, 28)]
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;
}
}
}