84 lines
4.0 KiB
C#
84 lines
4.0 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(559, "MovieClipScopes", 136)]
|
|
public class MovieClipScopes {
|
|
[DNAFieldAttribute(0, "short", "ok", "short", 2, false, 0)]
|
|
public short ok;
|
|
[DNAFieldAttribute(1, "short", "use_track_mask", "short", 2, false, 2)]
|
|
public short use_track_mask;
|
|
[DNAFieldAttribute(2, "int", "track_preview_height", "int", 4, false, 4)]
|
|
public int track_preview_height;
|
|
[DNAFieldAttribute(3, "int", "frame_width", "int", 4, false, 8)]
|
|
public int frame_width;
|
|
[DNAFieldAttribute(4, "int", "frame_height", "int", 4, false, 12)]
|
|
public int frame_height;
|
|
[DNAFieldAttribute(5, "MovieTrackingMarker", "undist_marker", "MovieTrackingMarker", 64, false, 16)]
|
|
public MovieTrackingMarker undist_marker;
|
|
[DNAFieldAttribute(6, "ImBuf", "*track_search", "ImBuf", 8, true, 80)]
|
|
public ImBuf ptr_track_search;
|
|
[DNAFieldAttribute(7, "ImBuf", "*track_preview", "ImBuf", 8, true, 88)]
|
|
public ImBuf ptr_track_preview;
|
|
[DNAFieldAttribute(8, "float", "track_pos[2]", "System.Single[]", 8, false, 96)]
|
|
public float[] track_pos = new System.Single[2];
|
|
[DNAFieldAttribute(9, "short", "track_disabled", "short", 2, false, 104)]
|
|
public short track_disabled;
|
|
[DNAFieldAttribute(10, "short", "track_locked", "short", 2, false, 106)]
|
|
public short track_locked;
|
|
[DNAFieldAttribute(11, "int", "scene_framenr", "int", 4, false, 108)]
|
|
public int scene_framenr;
|
|
[DNAFieldAttribute(12, "MovieTrackingTrack", "*track", "MovieTrackingTrack", 8, true, 112)]
|
|
public MovieTrackingTrack ptr_track;
|
|
[DNAFieldAttribute(13, "MovieTrackingMarker", "*marker", "MovieTrackingMarker", 8, true, 120)]
|
|
public MovieTrackingMarker ptr_marker;
|
|
[DNAFieldAttribute(14, "float", "slide_scale[2]", "System.Single[]", 8, false, 128)]
|
|
public float[] slide_scale = new System.Single[2];
|
|
public MovieClipScopes() {
|
|
this.ok = default;
|
|
this.use_track_mask = default;
|
|
this.track_preview_height = default;
|
|
this.frame_width = default;
|
|
this.frame_height = default;
|
|
this.undist_marker = default;
|
|
this.ptr_track_search = default;
|
|
this.ptr_track_preview = default;
|
|
this.track_pos = default;
|
|
this.track_disabled = default;
|
|
this.track_locked = default;
|
|
this.scene_framenr = default;
|
|
this.ptr_track = default;
|
|
this.ptr_marker = default;
|
|
this.slide_scale = default;
|
|
}
|
|
public MovieClipScopes(short ok, short use_track_mask, int track_preview_height, int frame_width, int frame_height, MovieTrackingMarker undist_marker, ImBuf ptr_track_search, ImBuf ptr_track_preview, float[] track_pos, short track_disabled, short track_locked, int scene_framenr, MovieTrackingTrack ptr_track, MovieTrackingMarker ptr_marker, float[] slide_scale) {
|
|
this.ok = ok;
|
|
this.use_track_mask = use_track_mask;
|
|
this.track_preview_height = track_preview_height;
|
|
this.frame_width = frame_width;
|
|
this.frame_height = frame_height;
|
|
this.undist_marker = undist_marker;
|
|
this.ptr_track_search = ptr_track_search;
|
|
this.ptr_track_preview = ptr_track_preview;
|
|
this.track_pos = track_pos;
|
|
this.track_disabled = track_disabled;
|
|
this.track_locked = track_locked;
|
|
this.scene_framenr = scene_framenr;
|
|
this.ptr_track = ptr_track;
|
|
this.ptr_marker = ptr_marker;
|
|
this.slide_scale = slide_scale;
|
|
}
|
|
}
|
|
}
|