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 float pole_merge_angle_from;
[DNAFieldAttribute(7, "float", "pole_merge_angle_to", 4)]
public float pole_merge_angle_to;
public CameraStereoSettings() {
this.interocular_distance = default;
this.convergence_distance = default;
this.convergence_mode = default;
this.pivot = default;
this.flag = default;
this._pad = default;
this.pole_merge_angle_from = default;
this.pole_merge_angle_to = default;
}
public CameraStereoSettings(float interocular_distance, float convergence_distance, short convergence_mode, short pivot, short flag, char[] _pad, float pole_merge_angle_from, float pole_merge_angle_to) {
this.interocular_distance = interocular_distance;
this.convergence_distance = convergence_distance;