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

@@ -39,6 +39,20 @@ namespace BlendFile.DNA {
public object ptr_data;
[DNAFieldAttribute(11, "ImplicitSharingInfoHandle", "*sharing_info", 0)]
public ImplicitSharingInfoHandle ptr_sharing_info;
public CustomDataLayer() {
this.type = default;
this.offset = default;
this.flag = default;
this.active = default;
this.active_rnd = default;
this.active_clone = default;
this.active_mask = default;
this.uid = default;
this.name = default;
this._pad1 = default;
this.ptr_data = default;
this.ptr_sharing_info = default;
}
public CustomDataLayer(int type, int offset, int flag, int active, int active_rnd, int active_clone, int active_mask, int uid, char[] name, char[] _pad1, object ptr_data, ImplicitSharingInfoHandle ptr_sharing_info) {
this.type = type;
this.offset = offset;