Files
BlenderSharp/BlendFile/DNA/bActionChannel.cs
Samuele Lorefice 0674e6b136 - Modified DNAClassAttribute to also support usage on structs
- Added auto generation of DNAClass attributes on file generation
- Regenerated all files
2025-01-23 16:15:50 +01:00

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