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

64 lines
2.7 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(62, "bActionGroup", 136)]
public class bActionGroup {
[DNAFieldAttribute(8, "bActionGroup", 0, "*next", "bActionGroup", true, 0)]
public bActionGroup next;
[DNAFieldAttribute(8, "bActionGroup", 1, "*prev", "bActionGroup", true, 8)]
public bActionGroup prev;
[DNAFieldAttribute(16, "ListBase", 2, "channels", "ListBase", false, 16)]
public ListBase channels;
[DNAFieldAttribute(4, "int", 3, "fcurve_range_start", "int", false, 32)]
public int fcurve_range_start;
[DNAFieldAttribute(4, "int", 4, "fcurve_range_length", "int", false, 36)]
public int fcurve_range_length;
[DNAFieldAttribute(8, "ActionChannelBag", 5, "*channel_bag", "ActionChannelBag", true, 40)]
public ActionChannelBag channel_bag;
[DNAFieldAttribute(4, "int", 6, "flag", "int", false, 48)]
public int flag;
[DNAFieldAttribute(4, "int", 7, "customCol", "int", false, 52)]
public int customCol;
[DNAFieldAttribute(64, "char", 8, "name[64]", "System.Char[]", false, 56)]
public char[] name = new System.Char[64];
[DNAFieldAttribute(16, "ThemeWireColor", 9, "cs", "ThemeWireColor", false, 120)]
public ThemeWireColor cs;
public bActionGroup() {
this.next = default;
this.prev = default;
this.channels = default;
this.fcurve_range_start = default;
this.fcurve_range_length = default;
this.channel_bag = default;
this.flag = default;
this.customCol = default;
this.name = default;
this.cs = default;
}
public bActionGroup(bActionGroup next, bActionGroup prev, ListBase channels, int fcurve_range_start, int fcurve_range_length, ActionChannelBag channel_bag, int flag, int customCol, char[] name, ThemeWireColor cs) {
this.next = next;
this.prev = prev;
this.channels = channels;
this.fcurve_range_start = fcurve_range_start;
this.fcurve_range_length = fcurve_range_length;
this.channel_bag = channel_bag;
this.flag = flag;
this.customCol = customCol;
this.name = name;
this.cs = cs;
}
}
}