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

76 lines
3.0 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(255, "bGPDspoint", 80)]
public class bGPDspoint {
[DNAFieldAttribute(0, "float", "x", "float", 4, false)]
public float x;
[DNAFieldAttribute(1, "float", "y", "float", 4, false)]
public float y;
[DNAFieldAttribute(2, "float", "z", "float", 4, false)]
public float z;
[DNAFieldAttribute(3, "float", "pressure", "float", 4, false)]
public float pressure;
[DNAFieldAttribute(4, "float", "strength", "float", 4, false)]
public float strength;
[DNAFieldAttribute(5, "float", "time", "float", 4, false)]
public float time;
[DNAFieldAttribute(6, "int", "flag", "int", 4, false)]
public int flag;
[DNAFieldAttribute(7, "float", "uv_fac", "float", 4, false)]
public float uv_fac;
[DNAFieldAttribute(8, "float", "uv_rot", "float", 4, false)]
public float uv_rot;
[DNAFieldAttribute(9, "float", "uv_fill[2]", "System.Single[]", 8, false)]
public float[] uv_fill = new System.Single[2];
[DNAFieldAttribute(10, "float", "vert_color[4]", "System.Single[]", 16, false)]
public float[] vert_color = new System.Single[4];
[DNAFieldAttribute(11, "char", "_pad2[4]", "System.Char[]", 4, false)]
public char[] _pad2 = new System.Char[4];
[DNAFieldAttribute(12, "bGPDspoint_Runtime", "runtime", "bGPDspoint_Runtime", 16, false)]
public bGPDspoint_Runtime runtime;
public bGPDspoint() {
this.x = default;
this.y = default;
this.z = default;
this.pressure = default;
this.strength = default;
this.time = default;
this.flag = default;
this.uv_fac = default;
this.uv_rot = default;
this.uv_fill = default;
this.vert_color = default;
this._pad2 = default;
this.runtime = default;
}
public bGPDspoint(float x, float y, float z, float pressure, float strength, float time, int flag, float uv_fac, float uv_rot, float[] uv_fill, float[] vert_color, char[] _pad2, bGPDspoint_Runtime runtime) {
this.x = x;
this.y = y;
this.z = z;
this.pressure = pressure;
this.strength = strength;
this.time = time;
this.flag = flag;
this.uv_fac = uv_fac;
this.uv_rot = uv_rot;
this.uv_fill = uv_fill;
this.vert_color = vert_color;
this._pad2 = _pad2;
this.runtime = runtime;
}
}
}