Files
BlenderSharp/BlendFile/DNA/bDopeSheet.cs
2025-03-04 18:48:04 +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", 112)]
public class bDopeSheet {
[DNAFieldAttribute(8, "ID", 0, "*source", "ID", true, 0)]
public ID source;
[DNAFieldAttribute(16, "ListBase", 1, "chanbase", "ListBase", false, 8)]
public ListBase chanbase;
[DNAFieldAttribute(8, "Collection", 2, "*filter_grp", "Collection", true, 24)]
public Collection filter_grp;
[DNAFieldAttribute(64, "char", 3, "searchstr[64]", "System.Char[]", false, 32)]
public char[] searchstr = new System.Char[64];
[DNAFieldAttribute(4, "int", 4, "filterflag", "int", false, 96)]
public int filterflag;
[DNAFieldAttribute(4, "int", 5, "filterflag2", "int", false, 100)]
public int filterflag2;
[DNAFieldAttribute(4, "int", 6, "flag", "int", false, 104)]
public int flag;
[DNAFieldAttribute(4, "int", 7, "renameIndex", "int", false, 108)]
public int renameIndex;
public bDopeSheet() {
this.source = default;
this.chanbase = default;
this.filter_grp = default;
this.searchstr = default;
this.filterflag = default;
this.filterflag2 = default;
this.flag = default;
this.renameIndex = default;
}
public bDopeSheet(ID source, ListBase chanbase, Collection filter_grp, char[] searchstr, int filterflag, int filterflag2, int flag, int renameIndex) {
this.source = source;
this.chanbase = chanbase;
this.filter_grp = filter_grp;
this.searchstr = searchstr;
this.filterflag = filterflag;
this.filterflag2 = filterflag2;
this.flag = flag;
this.renameIndex = renameIndex;
}
}
}