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

44 lines
1.6 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(171, "bConstraintChannel", 56)]
public class bConstraintChannel {
[DNAFieldAttribute(8, "bConstraintChannel", 0, "*next", "bConstraintChannel", true, 0)]
public bConstraintChannel next;
[DNAFieldAttribute(8, "bConstraintChannel", 1, "*prev", "bConstraintChannel", true, 8)]
public bConstraintChannel prev;
[DNAFieldAttribute(8, "Ipo", 2, "*ipo", "Ipo", true, 16)]
public Ipo ipo;
[DNAFieldAttribute(2, "short", 3, "flag", "short", false, 24)]
public short flag;
[DNAFieldAttribute(30, "char", 4, "name[30]", "System.Char[]", false, 26)]
public char[] name = new System.Char[30];
public bConstraintChannel() {
this.next = default;
this.prev = default;
this.ipo = default;
this.flag = default;
this.name = default;
}
public bConstraintChannel(bConstraintChannel next, bConstraintChannel prev, Ipo ipo, short flag, char[] name) {
this.next = next;
this.prev = prev;
this.ipo = ipo;
this.flag = flag;
this.name = name;
}
}
}