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

52 lines
1.8 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(76, "Ipo", 248)]
public class Ipo {
[DNAFieldAttribute(208, "ID", 0, "id", "ID", false, 0)]
public ID id;
[DNAFieldAttribute(16, "ListBase", 1, "curve", "ListBase", false, 208)]
public ListBase curve;
[DNAFieldAttribute(16, "rctf", 2, "cur", "rctf", false, 224)]
public rctf cur;
[DNAFieldAttribute(2, "short", 3, "blocktype", "short", false, 240)]
public short blocktype;
[DNAFieldAttribute(2, "short", 4, "showkey", "short", false, 242)]
public short showkey;
[DNAFieldAttribute(2, "short", 5, "muteipo", "short", false, 244)]
public short muteipo;
[DNAFieldAttribute(2, "char", 6, "_pad[2]", "System.Char[]", false, 246)]
public char[] _pad = new System.Char[2];
public Ipo() {
this.id = default;
this.curve = default;
this.cur = default;
this.blocktype = default;
this.showkey = default;
this.muteipo = default;
this._pad = default;
}
public Ipo(ID id, ListBase curve, rctf cur, short blocktype, short showkey, short muteipo, char[] _pad) {
this.id = id;
this.curve = curve;
this.cur = cur;
this.blocktype = blocktype;
this.showkey = showkey;
this.muteipo = muteipo;
this._pad = _pad;
}
}
}