72 lines
3.2 KiB
C#
72 lines
3.2 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(978, "MovieTrackingPlaneTrack", 128)]
|
|
public class MovieTrackingPlaneTrack {
|
|
[DNAFieldAttribute(8, "MovieTrackingPlaneTrack", 0, "*next", "MovieTrackingPlaneTrack", true, 0)]
|
|
public MovieTrackingPlaneTrack next;
|
|
[DNAFieldAttribute(8, "MovieTrackingPlaneTrack", 1, "*prev", "MovieTrackingPlaneTrack", true, 8)]
|
|
public MovieTrackingPlaneTrack prev;
|
|
[DNAArrayAttribute(64, "char", 2, "name[64]", "System.Char[]", 64, 16)]
|
|
public char[] name = new System.Char[64];
|
|
[DNAFieldAttribute(8, "MovieTrackingTrack", 3, "**point_tracks", "MovieTrackingTrack", true, 80)]
|
|
public MovieTrackingTrack point_tracks;
|
|
[DNAFieldAttribute(4, "int", 4, "point_tracksnr", "int", false, 88)]
|
|
public int point_tracksnr;
|
|
[DNAArrayAttribute(4, "char", 5, "_pad[4]", "System.Char[]", 4, 92)]
|
|
public char[] _pad = new System.Char[4];
|
|
[DNAFieldAttribute(8, "MovieTrackingPlaneMarker", 6, "*markers", "MovieTrackingPlaneMarker", true, 96)]
|
|
public MovieTrackingPlaneMarker markers;
|
|
[DNAFieldAttribute(4, "int", 7, "markersnr", "int", false, 104)]
|
|
public int markersnr;
|
|
[DNAFieldAttribute(4, "int", 8, "flag", "int", false, 108)]
|
|
public int flag;
|
|
[DNAFieldAttribute(8, "Image", 9, "*image", "Image", true, 112)]
|
|
public Image image;
|
|
[DNAFieldAttribute(4, "float", 10, "image_opacity", "float", false, 120)]
|
|
public float image_opacity;
|
|
[DNAFieldAttribute(4, "int", 11, "last_marker", "int", false, 124)]
|
|
public int last_marker;
|
|
public MovieTrackingPlaneTrack() {
|
|
this.next = default;
|
|
this.prev = default;
|
|
this.name = default;
|
|
this.point_tracks = default;
|
|
this.point_tracksnr = default;
|
|
this._pad = default;
|
|
this.markers = default;
|
|
this.markersnr = default;
|
|
this.flag = default;
|
|
this.image = default;
|
|
this.image_opacity = default;
|
|
this.last_marker = default;
|
|
}
|
|
public MovieTrackingPlaneTrack(MovieTrackingPlaneTrack next, MovieTrackingPlaneTrack prev, char[] name, MovieTrackingTrack point_tracks, int point_tracksnr, char[] _pad, MovieTrackingPlaneMarker markers, int markersnr, int flag, Image image, float image_opacity, int last_marker) {
|
|
this.next = next;
|
|
this.prev = prev;
|
|
this.name = name;
|
|
this.point_tracks = point_tracks;
|
|
this.point_tracksnr = point_tracksnr;
|
|
this._pad = _pad;
|
|
this.markers = markers;
|
|
this.markersnr = markersnr;
|
|
this.flag = flag;
|
|
this.image = image;
|
|
this.image_opacity = image_opacity;
|
|
this.last_marker = last_marker;
|
|
}
|
|
}
|
|
}
|