Generated new code and added initial data handling
This commit is contained in:
@@ -39,6 +39,20 @@ namespace BlendFile.DNA {
|
||||
public int keyframe1;
|
||||
[DNAFieldAttribute(11, "int", "keyframe2", 4)]
|
||||
public int keyframe2;
|
||||
public MovieTrackingObject() {
|
||||
this.ptr_next = default;
|
||||
this.ptr_prev = default;
|
||||
this.name = default;
|
||||
this.flag = default;
|
||||
this.scale = default;
|
||||
this.tracks = default;
|
||||
this.plane_tracks = default;
|
||||
this.ptr_active_track = default;
|
||||
this.ptr_active_plane_track = default;
|
||||
this.reconstruction = default;
|
||||
this.keyframe1 = default;
|
||||
this.keyframe2 = default;
|
||||
}
|
||||
public MovieTrackingObject(MovieTrackingObject ptr_next, MovieTrackingObject ptr_prev, char[] name, int flag, float scale, ListBase tracks, ListBase plane_tracks, MovieTrackingTrack ptr_active_track, MovieTrackingPlaneTrack ptr_active_plane_track, MovieTrackingReconstruction reconstruction, int keyframe1, int keyframe2) {
|
||||
this.ptr_next = ptr_next;
|
||||
this.ptr_prev = ptr_prev;
|
||||
|
||||
Reference in New Issue
Block a user