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

@@ -23,6 +23,12 @@ namespace BlendFile.DNA {
public float ptr_L1_b;
[DNAFieldAttribute(3, "float", "*L1_c", 4)]
public float ptr_L1_c;
public LightProbeVisibilityData() {
this.ptr_L0 = default;
this.ptr_L1_a = default;
this.ptr_L1_b = default;
this.ptr_L1_c = default;
}
public LightProbeVisibilityData(float ptr_L0, float ptr_L1_a, float ptr_L1_b, float ptr_L1_c) {
this.ptr_L0 = ptr_L0;
this.ptr_L1_a = ptr_L1_a;