Generated new code and added initial data handling

This commit is contained in:
mm00
2025-01-27 19:24:50 +01:00
parent ebcc629feb
commit 146a3992ce
940 changed files with 11560 additions and 9 deletions

View File

@@ -35,6 +35,18 @@ namespace BlendFile.DNA {
public char storage;
[DNAFieldAttribute(9, "char", "_pad[5]", 1)]
public char[] _pad = new System.Char[5];
public StripProxy() {
this.dir = default;
this.file = default;
this.ptr_anim = default;
this.tc = default;
this.quality = default;
this.build_size_flags = default;
this.build_tc_flags = default;
this.build_flags = default;
this.storage = default;
this._pad = default;
}
public StripProxy(char[] dir, char[] file, ImBufAnim ptr_anim, short tc, short quality, short build_size_flags, short build_tc_flags, short build_flags, char storage, char[] _pad) {
this.dir = dir;
this.file = file;