Files
BlenderSharp/BlendFile/DNA/MovieTrackingObject.cs
2025-03-11 19:12:04 +01:00

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