Files
BlenderSharp/BlendFile/DNA/IpoDriver.cs

48 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(335, "IpoDriver", 144)]
public class IpoDriver {
[DNAFieldAttribute(0, "Object", "*ob", "Object", 8, true, 0)]
public Object ptr_ob;
[DNAFieldAttribute(1, "short", "blocktype", "short", 2, false, 8)]
public short blocktype;
[DNAFieldAttribute(2, "short", "adrcode", "short", 2, false, 10)]
public short adrcode;
[DNAFieldAttribute(3, "short", "type", "short", 2, false, 12)]
public short type;
[DNAFieldAttribute(4, "short", "flag", "short", 2, false, 14)]
public short flag;
[DNAFieldAttribute(5, "char", "name[128]", "System.Char[]", 128, false, 16)]
public char[] name = new System.Char[128];
public IpoDriver() {
this.ptr_ob = default;
this.blocktype = default;
this.adrcode = default;
this.type = default;
this.flag = default;
this.name = default;
}
public IpoDriver(Object ptr_ob, short blocktype, short adrcode, short type, short flag, char[] name) {
this.ptr_ob = ptr_ob;
this.blocktype = blocktype;
this.adrcode = adrcode;
this.type = type;
this.flag = flag;
this.name = name;
}
}
}