Files
BlenderSharp/BlendFile/DNA/Editing.cs
2025-02-19 18:48:50 +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(0, "ListBase", "*seqbasep", "ListBase", 8, true)]
public ListBase ptr_seqbasep;
[DNAFieldAttribute(1, "ListBase", "*displayed_channels", "ListBase", 8, true)]
public ListBase ptr_displayed_channels;
[DNAFieldAttribute(2, "void", "*_pad0", "void", 8, true)]
public object ptr__pad0;
[DNAFieldAttribute(3, "ListBase", "seqbase", "ListBase", 16, false)]
public ListBase seqbase;
[DNAFieldAttribute(4, "ListBase", "metastack", "ListBase", 16, false)]
public ListBase metastack;
[DNAFieldAttribute(5, "ListBase", "channels", "ListBase", 16, false)]
public ListBase channels;
[DNAFieldAttribute(6, "Sequence", "*act_seq", "Sequence", 8, true)]
public Sequence ptr_act_seq;
[DNAFieldAttribute(7, "char", "act_imagedir[1024]", "System.Char[]", 1024, false)]
public char[] act_imagedir = new System.Char[1024];
[DNAFieldAttribute(8, "char", "act_sounddir[1024]", "System.Char[]", 1024, false)]
public char[] act_sounddir = new System.Char[1024];
[DNAFieldAttribute(9, "char", "proxy_dir[1024]", "System.Char[]", 1024, false)]
public char[] proxy_dir = new System.Char[1024];
[DNAFieldAttribute(10, "int", "proxy_storage", "int", 4, false)]
public int proxy_storage;
[DNAFieldAttribute(11, "int", "over_ofs", "int", 4, false)]
public int over_ofs;
[DNAFieldAttribute(12, "int", "over_cfra", "int", 4, false)]
public int over_cfra;
[DNAFieldAttribute(13, "int", "over_flag", "int", 4, false)]
public int over_flag;
[DNAFieldAttribute(14, "rctf", "over_border", "rctf", 16, false)]
public rctf over_border;
[DNAFieldAttribute(15, "int", "show_missing_media_flag", "int", 4, false)]
public int show_missing_media_flag;
[DNAFieldAttribute(16, "int", "_pad1", "int", 4, false)]
public int _pad1;
[DNAFieldAttribute(17, "SeqCache", "*cache", "SeqCache", 8, true)]
public SeqCache ptr_cache;
[DNAFieldAttribute(18, "float", "recycle_max_cost", "float", 4, false)]
public float recycle_max_cost;
[DNAFieldAttribute(19, "int", "cache_flag", "int", 4, false)]
public int cache_flag;
[DNAFieldAttribute(20, "PrefetchJob", "*prefetch_job", "PrefetchJob", 8, true)]
public PrefetchJob ptr_prefetch_job;
[DNAFieldAttribute(21, "int64_t", "disk_cache_timestamp", "int64_t", 8, false)]
public long disk_cache_timestamp;
[DNAFieldAttribute(22, "EditingRuntime", "runtime", "EditingRuntime", 32, false)]
public EditingRuntime runtime;
public Editing() {
this.ptr_seqbasep = default;
this.ptr_displayed_channels = default;
this.ptr__pad0 = default;
this.seqbase = default;
this.metastack = default;
this.channels = default;
this.ptr_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.ptr_cache = default;
this.recycle_max_cost = default;
this.cache_flag = default;
this.ptr_prefetch_job = default;
this.disk_cache_timestamp = default;
this.runtime = default;
}
public Editing(
ListBase ptr_seqbasep,
ListBase ptr_displayed_channels,
object ptr__pad0,
ListBase seqbase,
ListBase metastack,
ListBase channels,
Sequence ptr_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 ptr_cache,
float recycle_max_cost,
int cache_flag,
PrefetchJob ptr_prefetch_job,
long disk_cache_timestamp,
EditingRuntime runtime) {
this.ptr_seqbasep = ptr_seqbasep;
this.ptr_displayed_channels = ptr_displayed_channels;
this.ptr__pad0 = ptr__pad0;
this.seqbase = seqbase;
this.metastack = metastack;
this.channels = channels;
this.ptr_act_seq = ptr_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.ptr_cache = ptr_cache;
this.recycle_max_cost = recycle_max_cost;
this.cache_flag = cache_flag;
this.ptr_prefetch_job = ptr_prefetch_job;
this.disk_cache_timestamp = disk_cache_timestamp;
this.runtime = runtime;
}
}
}