Files
BlenderSharp/BlendFile/DNA/CBData.cs
2025-03-04 18:48:04 +01:00

48 lines
1.5 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(974, "CBData", 24)]
public class CBData {
[DNAFieldAttribute(4, "float", 0, "r", "float", false, 0)]
public float r;
[DNAFieldAttribute(4, "float", 1, "g", "float", false, 4)]
public float g;
[DNAFieldAttribute(4, "float", 2, "b", "float", false, 8)]
public float b;
[DNAFieldAttribute(4, "float", 3, "a", "float", false, 12)]
public float a;
[DNAFieldAttribute(4, "float", 4, "pos", "float", false, 16)]
public float pos;
[DNAFieldAttribute(4, "int", 5, "cur", "int", false, 20)]
public int cur;
public CBData() {
this.r = default;
this.g = default;
this.b = default;
this.a = default;
this.pos = default;
this.cur = default;
}
public CBData(float r, float g, float b, float a, float pos, int cur) {
this.r = r;
this.g = g;
this.b = b;
this.a = a;
this.pos = pos;
this.cur = cur;
}
}
}