Files
BlenderSharp/BlendFile/DNA/bActionChannel.cs
2025-02-19 18:48:50 +01:00

56 lines
2.2 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(75, "bActionChannel", 120)]
public class bActionChannel {
[DNAFieldAttribute(0, "bActionChannel", "*next", "bActionChannel", 8, true)]
public bActionChannel ptr_next;
[DNAFieldAttribute(1, "bActionChannel", "*prev", "bActionChannel", 8, true)]
public bActionChannel ptr_prev;
[DNAFieldAttribute(2, "bActionGroup", "*grp", "bActionGroup", 8, true)]
public bActionGroup ptr_grp;
[DNAFieldAttribute(3, "Ipo", "*ipo", "Ipo", 8, true)]
public Ipo ptr_ipo;
[DNAFieldAttribute(4, "ListBase", "constraintChannels", "ListBase", 16, false)]
public ListBase constraintChannels;
[DNAFieldAttribute(5, "int", "flag", "int", 4, false)]
public int flag;
[DNAFieldAttribute(6, "char", "name[64]", "System.Char[]", 64, false)]
public char[] name = new System.Char[64];
[DNAFieldAttribute(7, "int", "temp", "int", 4, false)]
public int temp;
public bActionChannel() {
this.ptr_next = default;
this.ptr_prev = default;
this.ptr_grp = default;
this.ptr_ipo = default;
this.constraintChannels = default;
this.flag = default;
this.name = default;
this.temp = default;
}
public bActionChannel(bActionChannel ptr_next, bActionChannel ptr_prev, bActionGroup ptr_grp, Ipo ptr_ipo, ListBase constraintChannels, int flag, char[] name, int temp) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
this.ptr_grp = ptr_grp;
this.ptr_ipo = ptr_ipo;
this.constraintChannels = constraintChannels;
this.flag = flag;
this.name = name;
this.temp = temp;
}
}
}