Files
BlenderSharp/BlendFile/DNA/MovieTrackingObject.cs

72 lines
3.4 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", 168)]
public class MovieTrackingObject {
[DNAFieldAttribute(0, "MovieTrackingObject", "*next", "MovieTrackingObject", 8, true, 0)]
public MovieTrackingObject ptr_next;
[DNAFieldAttribute(1, "MovieTrackingObject", "*prev", "MovieTrackingObject", 8, true, 8)]
public MovieTrackingObject ptr_prev;
[DNAFieldAttribute(2, "char", "name[64]", "System.Char[]", 64, false, 16)]
public char[] name = new System.Char[64];
[DNAFieldAttribute(3, "int", "flag", "int", 4, false, 80)]
public int flag;
[DNAFieldAttribute(4, "float", "scale", "float", 4, false, 84)]
public float scale;
[DNAFieldAttribute(5, "ListBase", "tracks", "ListBase", 16, false, 88)]
public ListBase tracks;
[DNAFieldAttribute(6, "ListBase", "plane_tracks", "ListBase", 16, false, 104)]
public ListBase plane_tracks;
[DNAFieldAttribute(7, "MovieTrackingTrack", "*active_track", "MovieTrackingTrack", 8, true, 120)]
public MovieTrackingTrack ptr_active_track;
[DNAFieldAttribute(8, "MovieTrackingPlaneTrack", "*active_plane_track", "MovieTrackingPlaneTrack", 8, true, 128)]
public MovieTrackingPlaneTrack ptr_active_plane_track;
[DNAFieldAttribute(9, "MovieTrackingReconstruction", "reconstruction", "MovieTrackingReconstruction", 24, false, 136)]
public MovieTrackingReconstruction reconstruction;
[DNAFieldAttribute(10, "int", "keyframe1", "int", 4, false, 160)]
public int keyframe1;
[DNAFieldAttribute(11, "int", "keyframe2", "int", 4, false, 164)]
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;
}
}
}