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

@@ -31,6 +31,16 @@ namespace BlendFile.DNA {
public int num_blades;
[DNAFieldAttribute(7, "int", "high_quality", 4)]
public int high_quality;
public GPUDOFSettings() {
this.focus_distance = default;
this.fstop = default;
this.focal_length = default;
this.sensor = default;
this.rotation = default;
this.ratio = default;
this.num_blades = default;
this.high_quality = default;
}
public GPUDOFSettings(float focus_distance, float fstop, float focal_length, float sensor, float rotation, float ratio, int num_blades, int high_quality) {
this.focus_distance = focus_distance;
this.fstop = fstop;