Files
BlenderSharp/BlendFile/DNA/Key.cs

52 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 BlendFile.CompatTypes;
using System;
// Automatically generated by BlenderSharp at 01/22/2025 16:57:57
namespace BlendFile.DNA {
public class Key {
public ID id;
public AnimData ptr_adt;
public KeyBlock ptr_refkey;
public char[] elemstr = new System.Char[32];
public int elemsize;
public char[] _pad = new System.Char[4];
public ListBase block;
public Ipo ptr_ipo;
public ID ptr_from;
public int totkey;
public short flag;
public char type;
public char _pad2;
public float ctime;
public int uidgen;
public Key(ID id, AnimData ptr_adt, KeyBlock ptr_refkey, char[] elemstr, int elemsize, char[] _pad, ListBase block, Ipo ptr_ipo, ID ptr_from, int totkey, short flag, char type, char _pad2, float ctime, int uidgen) {
this.id = id;
this.ptr_adt = ptr_adt;
this.ptr_refkey = ptr_refkey;
this.elemstr = elemstr;
this.elemsize = elemsize;
this._pad = _pad;
this.block = block;
this.ptr_ipo = ptr_ipo;
this.ptr_from = ptr_from;
this.totkey = totkey;
this.flag = flag;
this.type = type;
this._pad2 = _pad2;
this.ctime = ctime;
this.uidgen = uidgen;
}
}
}