Files
BlenderSharp/BlendFile/DNA/CBData.cs

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 struct CBData {
[DNAFieldAttribute(0, "float", "r", "float", 4, false, 0)]
public float r;
[DNAFieldAttribute(1, "float", "g", "float", 4, false, 4)]
public float g;
[DNAFieldAttribute(2, "float", "b", "float", 4, false, 8)]
public float b;
[DNAFieldAttribute(3, "float", "a", "float", 4, false, 12)]
public float a;
[DNAFieldAttribute(4, "float", "pos", "float", 4, false, 16)]
public float pos;
[DNAFieldAttribute(5, "int", "cur", "int", 4, 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;
}
}
}