Files
BlenderSharp/BlendFile/DNA/bDopeSheet.cs
2025-02-19 17:07:50 +01:00

56 lines
2.2 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(69, "bDopeSheet")]
public class bDopeSheet {
[DNAFieldAttribute(0, "ID", "*source", "ID", 4, true)]
public ID ptr_source;
[DNAFieldAttribute(1, "ListBase", "chanbase", "ListBase", 16, false)]
public ListBase chanbase;
[DNAFieldAttribute(2, "Collection", "*filter_grp", "Collection", 4, true)]
public Collection ptr_filter_grp;
[DNAFieldAttribute(3, "char", "searchstr[64]", "System.Char[]", 64, false)]
public char[] searchstr = new System.Char[64];
[DNAFieldAttribute(4, "int", "filterflag", "int", 4, false)]
public int filterflag;
[DNAFieldAttribute(5, "int", "filterflag2", "int", 4, false)]
public int filterflag2;
[DNAFieldAttribute(6, "int", "flag", "int", 4, false)]
public int flag;
[DNAFieldAttribute(7, "int", "renameIndex", "int", 4, false)]
public int renameIndex;
public bDopeSheet() {
this.ptr_source = default;
this.chanbase = default;
this.ptr_filter_grp = default;
this.searchstr = default;
this.filterflag = default;
this.filterflag2 = default;
this.flag = default;
this.renameIndex = default;
}
public bDopeSheet(ID ptr_source, ListBase chanbase, Collection ptr_filter_grp, char[] searchstr, int filterflag, int filterflag2, int flag, int renameIndex) {
this.ptr_source = ptr_source;
this.chanbase = chanbase;
this.ptr_filter_grp = ptr_filter_grp;
this.searchstr = searchstr;
this.filterflag = filterflag;
this.filterflag2 = filterflag2;
this.flag = flag;
this.renameIndex = renameIndex;
}
}
}