Files
BlenderSharp/BlendFile/DNA/bActionGroup.cs

42 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 BlendFile.CompatTypes;
using System;
// Automatically generated by BlenderSharp at 01/22/2025 16:57: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;
}
}
}