//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ using System; namespace BlendFile.DNA { using BlendFile; [DNAClassAttribute(978, "MovieTrackingPlaneTrack", 128)] public class MovieTrackingPlaneTrack { [DNAFieldAttribute(0, "MovieTrackingPlaneTrack", "*next", "MovieTrackingPlaneTrack", 8, true)] public MovieTrackingPlaneTrack ptr_next; [DNAFieldAttribute(1, "MovieTrackingPlaneTrack", "*prev", "MovieTrackingPlaneTrack", 8, true)] public MovieTrackingPlaneTrack ptr_prev; [DNAFieldAttribute(2, "char", "name[64]", "System.Char[]", 64, false)] public char[] name = new System.Char[64]; [DNAFieldAttribute(3, "MovieTrackingTrack", "**point_tracks", "MovieTrackingTrack", 8, true)] public MovieTrackingTrack ptr_ptr_point_tracks; [DNAFieldAttribute(4, "int", "point_tracksnr", "int", 4, false)] public int point_tracksnr; [DNAFieldAttribute(5, "char", "_pad[4]", "System.Char[]", 4, false)] public char[] _pad = new System.Char[4]; [DNAFieldAttribute(6, "MovieTrackingPlaneMarker", "*markers", "MovieTrackingPlaneMarker", 8, true)] public MovieTrackingPlaneMarker ptr_markers; [DNAFieldAttribute(7, "int", "markersnr", "int", 4, false)] public int markersnr; [DNAFieldAttribute(8, "int", "flag", "int", 4, false)] public int flag; [DNAFieldAttribute(9, "Image", "*image", "Image", 8, true)] public Image ptr_image; [DNAFieldAttribute(10, "float", "image_opacity", "float", 4, false)] public float image_opacity; [DNAFieldAttribute(11, "int", "last_marker", "int", 4, false)] public int last_marker; public MovieTrackingPlaneTrack() { this.ptr_next = default; this.ptr_prev = default; this.name = default; this.ptr_ptr_point_tracks = default; this.point_tracksnr = default; this._pad = default; this.ptr_markers = default; this.markersnr = default; this.flag = default; this.ptr_image = default; this.image_opacity = default; this.last_marker = default; } public MovieTrackingPlaneTrack(MovieTrackingPlaneTrack ptr_next, MovieTrackingPlaneTrack ptr_prev, char[] name, MovieTrackingTrack ptr_ptr_point_tracks, int point_tracksnr, char[] _pad, MovieTrackingPlaneMarker ptr_markers, int markersnr, int flag, Image ptr_image, float image_opacity, int last_marker) { this.ptr_next = ptr_next; this.ptr_prev = ptr_prev; this.name = name; this.ptr_ptr_point_tracks = ptr_ptr_point_tracks; this.point_tracksnr = point_tracksnr; this._pad = _pad; this.ptr_markers = ptr_markers; this.markersnr = markersnr; this.flag = flag; this.ptr_image = ptr_image; this.image_opacity = image_opacity; this.last_marker = last_marker; } } }