//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ using System; namespace BlendFile.DNA { using BlendFile; [DNAClassAttribute(974, "CBData")] public struct CBData { [DNAFieldAttribute(0, "float", "r", 4)] public float r; [DNAFieldAttribute(1, "float", "g", 4)] public float g; [DNAFieldAttribute(2, "float", "b", 4)] public float b; [DNAFieldAttribute(3, "float", "a", 4)] public float a; [DNAFieldAttribute(4, "float", "pos", 4)] public float pos; [DNAFieldAttribute(5, "int", "cur", 4)] public int cur; 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; } } }