Files
BlenderSharp/BlendFile/DNA/bActionGroup.cs
2025-01-22 02:23:29 +01:00

29 lines
1.1 KiB
C#

// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public class bActionGroup {
public bActionGroup ptr_next;
public bActionGroup ptr_prev;
public ListBase channels;
public int fcurve_range_start;
public int fcurve_range_length;
public ActionChannelBag ptr_channel_bag;
public int flag;
public int customCol;
public char[] name = new System.Char[64];
public ThemeWireColor cs;
public bActionGroup(bActionGroup ptr_next, bActionGroup ptr_prev, ListBase channels, int fcurve_range_start, int fcurve_range_length, ActionChannelBag ptr_channel_bag, int flag, int customCol, char[] name, ThemeWireColor cs) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
this.channels = channels;
this.fcurve_range_start = fcurve_range_start;
this.fcurve_range_length = fcurve_range_length;
this.ptr_channel_bag = ptr_channel_bag;
this.flag = flag;
this.customCol = customCol;
this.name = name;
this.cs = cs;
}
}
}