Files
BlenderSharp/BlendFile/DNA/Editing.cs
2025-03-12 19:02:40 +01:00

139 lines
6.1 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(840, "Editing", 3256)]
public class Editing {
[DNAFieldAttribute(8, "ListBase", 0, "*seqbasep", "ListBase", true, 0)]
public ListBase seqbasep;
[DNAFieldAttribute(8, "ListBase", 1, "*displayed_channels", "ListBase", true, 8)]
public ListBase displayed_channels;
[DNAFieldAttribute(8, "void", 2, "*_pad0", "void", true, 16)]
public object _pad0;
[DNAFieldAttribute(16, "ListBase", 3, "seqbase", "ListBase", false, 24)]
public ListBase seqbase;
[DNAFieldAttribute(16, "ListBase", 4, "metastack", "ListBase", false, 40)]
public ListBase metastack;
[DNAFieldAttribute(16, "ListBase", 5, "channels", "ListBase", false, 56)]
public ListBase channels;
[DNAFieldAttribute(8, "Sequence", 6, "*act_seq", "Sequence", true, 72)]
public Sequence act_seq;
[DNAArrayAttribute(1024, "char", 7, "act_imagedir[1024]", "System.Char[]", 1024, false, 80)]
public char[] act_imagedir = new System.Char[1024];
[DNAArrayAttribute(1024, "char", 8, "act_sounddir[1024]", "System.Char[]", 1024, false, 1104)]
public char[] act_sounddir = new System.Char[1024];
[DNAArrayAttribute(1024, "char", 9, "proxy_dir[1024]", "System.Char[]", 1024, false, 2128)]
public char[] proxy_dir = new System.Char[1024];
[DNAFieldAttribute(4, "int", 10, "proxy_storage", "int", false, 3152)]
public int proxy_storage;
[DNAFieldAttribute(4, "int", 11, "over_ofs", "int", false, 3156)]
public int over_ofs;
[DNAFieldAttribute(4, "int", 12, "over_cfra", "int", false, 3160)]
public int over_cfra;
[DNAFieldAttribute(4, "int", 13, "over_flag", "int", false, 3164)]
public int over_flag;
[DNAFieldAttribute(16, "rctf", 14, "over_border", "rctf", false, 3168)]
public rctf over_border;
[DNAFieldAttribute(4, "int", 15, "show_missing_media_flag", "int", false, 3184)]
public int show_missing_media_flag;
[DNAFieldAttribute(4, "int", 16, "_pad1", "int", false, 3188)]
public int _pad1;
[DNAFieldAttribute(8, "SeqCache", 17, "*cache", "SeqCache", true, 3192)]
public SeqCache cache;
[DNAFieldAttribute(4, "float", 18, "recycle_max_cost", "float", false, 3200)]
public float recycle_max_cost;
[DNAFieldAttribute(4, "int", 19, "cache_flag", "int", false, 3204)]
public int cache_flag;
[DNAFieldAttribute(8, "PrefetchJob", 20, "*prefetch_job", "PrefetchJob", true, 3208)]
public PrefetchJob prefetch_job;
[DNAFieldAttribute(8, "int64_t", 21, "disk_cache_timestamp", "int64_t", false, 3216)]
public long disk_cache_timestamp;
[DNAFieldAttribute(32, "EditingRuntime", 22, "runtime", "EditingRuntime", false, 3224)]
public EditingRuntime runtime;
public Editing() {
this.seqbasep = default;
this.displayed_channels = default;
this._pad0 = default;
this.seqbase = default;
this.metastack = default;
this.channels = default;
this.act_seq = default;
this.act_imagedir = default;
this.act_sounddir = default;
this.proxy_dir = default;
this.proxy_storage = default;
this.over_ofs = default;
this.over_cfra = default;
this.over_flag = default;
this.over_border = default;
this.show_missing_media_flag = default;
this._pad1 = default;
this.cache = default;
this.recycle_max_cost = default;
this.cache_flag = default;
this.prefetch_job = default;
this.disk_cache_timestamp = default;
this.runtime = default;
}
public Editing(
ListBase seqbasep,
ListBase displayed_channels,
object _pad0,
ListBase seqbase,
ListBase metastack,
ListBase channels,
Sequence act_seq,
char[] act_imagedir,
char[] act_sounddir,
char[] proxy_dir,
int proxy_storage,
int over_ofs,
int over_cfra,
int over_flag,
rctf over_border,
int show_missing_media_flag,
int _pad1,
SeqCache cache,
float recycle_max_cost,
int cache_flag,
PrefetchJob prefetch_job,
long disk_cache_timestamp,
EditingRuntime runtime) {
this.seqbasep = seqbasep;
this.displayed_channels = displayed_channels;
this._pad0 = _pad0;
this.seqbase = seqbase;
this.metastack = metastack;
this.channels = channels;
this.act_seq = act_seq;
this.act_imagedir = act_imagedir;
this.act_sounddir = act_sounddir;
this.proxy_dir = proxy_dir;
this.proxy_storage = proxy_storage;
this.over_ofs = over_ofs;
this.over_cfra = over_cfra;
this.over_flag = over_flag;
this.over_border = over_border;
this.show_missing_media_flag = show_missing_media_flag;
this._pad1 = _pad1;
this.cache = cache;
this.recycle_max_cost = recycle_max_cost;
this.cache_flag = cache_flag;
this.prefetch_job = prefetch_job;
this.disk_cache_timestamp = disk_cache_timestamp;
this.runtime = runtime;
}
}
}