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

@@ -57,6 +57,29 @@ namespace BlendFile.DNA {
public float clean_error;
[DNAFieldAttribute(20, "float", "object_distance", 4)]
public float object_distance;
public MovieTrackingSettings() {
this.default_motion_model = default;
this.default_algorithm_flag = default;
this.default_minimum_correlation = default;
this.default_pattern_size = default;
this.default_search_size = default;
this.default_frames_limit = default;
this.default_margin = default;
this.default_pattern_match = default;
this.default_flag = default;
this.default_weight = default;
this.motion_flag = default;
this.speed = default;
this.keyframe1 = default;
this.keyframe2 = default;
this.reconstruction_flag = default;
this.refine_camera_intrinsics = default;
this.dist = default;
this.clean_frames = default;
this.clean_action = default;
this.clean_error = default;
this.object_distance = default;
}
public MovieTrackingSettings(
short default_motion_model,
short default_algorithm_flag,