72 lines
3.3 KiB
C#
72 lines
3.3 KiB
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// This code was generated by a tool.
|
|
//
|
|
// Changes to this file may cause incorrect behavior and will be lost if
|
|
// the code is regenerated.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
using System;
|
|
|
|
|
|
namespace BlendFile.DNA {
|
|
using BlendFile;
|
|
|
|
[DNAClassAttribute(982, "MovieTrackingObject")]
|
|
public class MovieTrackingObject {
|
|
[DNAFieldAttribute(0, "MovieTrackingObject", "*next", "MovieTrackingObject", 168)]
|
|
public MovieTrackingObject ptr_next;
|
|
[DNAFieldAttribute(1, "MovieTrackingObject", "*prev", "MovieTrackingObject", 168)]
|
|
public MovieTrackingObject ptr_prev;
|
|
[DNAFieldAttribute(2, "char", "name[64]", "System.Char[]", 1)]
|
|
public char[] name = new System.Char[64];
|
|
[DNAFieldAttribute(3, "int", "flag", "int", 4)]
|
|
public int flag;
|
|
[DNAFieldAttribute(4, "float", "scale", "float", 4)]
|
|
public float scale;
|
|
[DNAFieldAttribute(5, "ListBase", "tracks", "ListBase", 16)]
|
|
public ListBase tracks;
|
|
[DNAFieldAttribute(6, "ListBase", "plane_tracks", "ListBase", 16)]
|
|
public ListBase plane_tracks;
|
|
[DNAFieldAttribute(7, "MovieTrackingTrack", "*active_track", "MovieTrackingTrack", 208)]
|
|
public MovieTrackingTrack ptr_active_track;
|
|
[DNAFieldAttribute(8, "MovieTrackingPlaneTrack", "*active_plane_track", "MovieTrackingPlaneTrack", 128)]
|
|
public MovieTrackingPlaneTrack ptr_active_plane_track;
|
|
[DNAFieldAttribute(9, "MovieTrackingReconstruction", "reconstruction", "MovieTrackingReconstruction", 24)]
|
|
public MovieTrackingReconstruction reconstruction;
|
|
[DNAFieldAttribute(10, "int", "keyframe1", "int", 4)]
|
|
public int keyframe1;
|
|
[DNAFieldAttribute(11, "int", "keyframe2", "int", 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;
|
|
this.name = name;
|
|
this.flag = flag;
|
|
this.scale = scale;
|
|
this.tracks = tracks;
|
|
this.plane_tracks = plane_tracks;
|
|
this.ptr_active_track = ptr_active_track;
|
|
this.ptr_active_plane_track = ptr_active_plane_track;
|
|
this.reconstruction = reconstruction;
|
|
this.keyframe1 = keyframe1;
|
|
this.keyframe2 = keyframe2;
|
|
}
|
|
}
|
|
}
|