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