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

@@ -41,6 +41,21 @@ namespace BlendFile.DNA {
public AssetLibraryReference asset_library_ref;
[DNAFieldAttribute(12, "ViewerPath", "viewer_path", 16)]
public ViewerPath viewer_path;
public WorkSpace() {
this.id = default;
this.layouts = default;
this.hook_layout_relations = default;
this.owner_ids = default;
this.tools = default;
this.ptr_pin_scene = default;
this._pad = default;
this.object_mode = default;
this.flags = default;
this.order = default;
this.ptr_runtime = default;
this.asset_library_ref = default;
this.viewer_path = default;
}
public WorkSpace(ID id, ListBase layouts, ListBase hook_layout_relations, ListBase owner_ids, ListBase tools, Scene ptr_pin_scene, char[] _pad, int object_mode, int flags, int order, WorkSpaceRuntimeHandle ptr_runtime, AssetLibraryReference asset_library_ref, ViewerPath viewer_path) {
this.id = id;
this.layouts = layouts;