Files
BlenderSharp/BlendFile/DNA/SpaceSpreadsheet.cs
2025-03-11 19:12:04 +01:00

114 lines
5.0 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(968, "SpaceSpreadsheet", 120)]
public class SpaceSpreadsheet {
[DNAFieldAttribute(8, "SpaceLink", 0, "*next", "SpaceLink", true, 0)]
public SpaceLink next;
[DNAFieldAttribute(8, "SpaceLink", 1, "*prev", "SpaceLink", true, 8)]
public SpaceLink prev;
[DNAFieldAttribute(16, "ListBase", 2, "regionbase", "ListBase", false, 16)]
public ListBase regionbase;
[DNAFieldAttribute(1, "char", 3, "spacetype", "char", false, 32)]
public char spacetype;
[DNAFieldAttribute(1, "char", 4, "link_flag", "char", false, 33)]
public char link_flag;
[DNAArrayAttribute(6, "char", 5, "_pad0[6]", "System.Char[]", 6, 34)]
public char[] _pad0 = new System.Char[6];
[DNAFieldAttribute(16, "ListBase", 6, "columns", "ListBase", false, 40)]
public ListBase columns;
[DNAFieldAttribute(16, "ListBase", 7, "row_filters", "ListBase", false, 56)]
public ListBase row_filters;
[DNAFieldAttribute(16, "ViewerPath", 8, "viewer_path", "ViewerPath", false, 72)]
public ViewerPath viewer_path;
[DNAFieldAttribute(8, "SpreadsheetInstanceID", 9, "*instance_ids", "SpreadsheetInstanceID", true, 88)]
public SpreadsheetInstanceID instance_ids;
[DNAFieldAttribute(4, "int", 10, "instance_ids_num", "int", false, 96)]
public int instance_ids_num;
[DNAFieldAttribute(1, "uchar", 11, "filter_flag", "uchar", false, 100)]
public byte filter_flag;
[DNAFieldAttribute(1, "uchar", 12, "geometry_component_type", "uchar", false, 101)]
public byte geometry_component_type;
[DNAFieldAttribute(1, "uchar", 13, "attribute_domain", "uchar", false, 102)]
public byte attribute_domain;
[DNAFieldAttribute(1, "uchar", 14, "object_eval_state", "uchar", false, 103)]
public byte object_eval_state;
[DNAFieldAttribute(4, "int", 15, "active_layer_index", "int", false, 104)]
public int active_layer_index;
[DNAFieldAttribute(4, "int", 16, "flag", "int", false, 108)]
public int flag;
[DNAFieldAttribute(8, "SpaceSpreadsheet_Runtime", 17, "*runtime", "SpaceSpreadsheet_Runtime", true, 112)]
public SpaceSpreadsheet_Runtime runtime;
public SpaceSpreadsheet() {
this.next = default;
this.prev = default;
this.regionbase = default;
this.spacetype = default;
this.link_flag = default;
this._pad0 = default;
this.columns = default;
this.row_filters = default;
this.viewer_path = default;
this.instance_ids = default;
this.instance_ids_num = default;
this.filter_flag = default;
this.geometry_component_type = default;
this.attribute_domain = default;
this.object_eval_state = default;
this.active_layer_index = default;
this.flag = default;
this.runtime = default;
}
public SpaceSpreadsheet(
SpaceLink next,
SpaceLink prev,
ListBase regionbase,
char spacetype,
char link_flag,
char[] _pad0,
ListBase columns,
ListBase row_filters,
ViewerPath viewer_path,
SpreadsheetInstanceID instance_ids,
int instance_ids_num,
byte filter_flag,
byte geometry_component_type,
byte attribute_domain,
byte object_eval_state,
int active_layer_index,
int flag,
SpaceSpreadsheet_Runtime runtime) {
this.next = next;
this.prev = prev;
this.regionbase = regionbase;
this.spacetype = spacetype;
this.link_flag = link_flag;
this._pad0 = _pad0;
this.columns = columns;
this.row_filters = row_filters;
this.viewer_path = viewer_path;
this.instance_ids = instance_ids;
this.instance_ids_num = instance_ids_num;
this.filter_flag = filter_flag;
this.geometry_component_type = geometry_component_type;
this.attribute_domain = attribute_domain;
this.object_eval_state = object_eval_state;
this.active_layer_index = active_layer_index;
this.flag = flag;
this.runtime = runtime;
}
}
}