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 PointCloudRuntimeHandle ptr_runtime;
[DNAFieldAttribute(11, "void", "*batch_cache", 0)]
public object ptr_batch_cache;
public PointCloud() {
this.id = default;
this.ptr_adt = default;
this.flag = default;
this.totpoint = default;
this.pdata = default;
this.attributes_active_index = default;
this._pad4 = default;
this.ptr_ptr_mat = default;
this.totcol = default;
this._pad3 = default;
this.ptr_runtime = default;
this.ptr_batch_cache = default;
}
public PointCloud(ID id, AnimData ptr_adt, int flag, int totpoint, CustomData pdata, int attributes_active_index, int _pad4, Material ptr_ptr_mat, short totcol, short[] _pad3, PointCloudRuntimeHandle ptr_runtime, object ptr_batch_cache) {
this.id = id;
this.ptr_adt = ptr_adt;