Regenerated codefiles
This commit is contained in:
@@ -15,49 +15,49 @@ namespace BlendFile.DNA {
|
||||
|
||||
[DNAClassAttribute(984, "MovieTrackingDopesheetChannel", 120)]
|
||||
public class MovieTrackingDopesheetChannel {
|
||||
[DNAFieldAttribute(0, "MovieTrackingDopesheetChannel", "*next", "MovieTrackingDopesheetChannel", 8, true, 0)]
|
||||
public MovieTrackingDopesheetChannel ptr_next;
|
||||
[DNAFieldAttribute(1, "MovieTrackingDopesheetChannel", "*prev", "MovieTrackingDopesheetChannel", 8, true, 8)]
|
||||
public MovieTrackingDopesheetChannel ptr_prev;
|
||||
[DNAFieldAttribute(2, "MovieTrackingTrack", "*track", "MovieTrackingTrack", 8, true, 16)]
|
||||
public MovieTrackingTrack ptr_track;
|
||||
[DNAFieldAttribute(3, "char", "_pad[4]", "System.Char[]", 4, false, 24)]
|
||||
[DNAFieldAttribute(8, "MovieTrackingDopesheetChannel", 0, "*next", "MovieTrackingDopesheetChannel", true, 0)]
|
||||
public MovieTrackingDopesheetChannel next;
|
||||
[DNAFieldAttribute(8, "MovieTrackingDopesheetChannel", 1, "*prev", "MovieTrackingDopesheetChannel", true, 8)]
|
||||
public MovieTrackingDopesheetChannel prev;
|
||||
[DNAFieldAttribute(8, "MovieTrackingTrack", 2, "*track", "MovieTrackingTrack", true, 16)]
|
||||
public MovieTrackingTrack track;
|
||||
[DNAFieldAttribute(4, "char", 3, "_pad[4]", "System.Char[]", false, 24)]
|
||||
public char[] _pad = new System.Char[4];
|
||||
[DNAFieldAttribute(4, "char", "name[64]", "System.Char[]", 64, false, 28)]
|
||||
[DNAFieldAttribute(64, "char", 4, "name[64]", "System.Char[]", false, 28)]
|
||||
public char[] name = new System.Char[64];
|
||||
[DNAFieldAttribute(5, "int", "tot_segment", "int", 4, false, 92)]
|
||||
[DNAFieldAttribute(4, "int", 5, "tot_segment", "int", false, 92)]
|
||||
public int tot_segment;
|
||||
[DNAFieldAttribute(6, "int", "*segments", "int", 8, true, 96)]
|
||||
public int ptr_segments;
|
||||
[DNAFieldAttribute(7, "int", "max_segment", "int", 4, false, 104)]
|
||||
[DNAFieldAttribute(8, "int", 6, "*segments", "int", true, 96)]
|
||||
public int segments;
|
||||
[DNAFieldAttribute(4, "int", 7, "max_segment", "int", false, 104)]
|
||||
public int max_segment;
|
||||
[DNAFieldAttribute(8, "int", "total_frames", "int", 4, false, 108)]
|
||||
[DNAFieldAttribute(4, "int", 8, "total_frames", "int", false, 108)]
|
||||
public int total_frames;
|
||||
[DNAFieldAttribute(9, "int", "first_not_disabled_marker_framenr", "int", 4, false, 112)]
|
||||
[DNAFieldAttribute(4, "int", 9, "first_not_disabled_marker_framenr", "int", false, 112)]
|
||||
public int first_not_disabled_marker_framenr;
|
||||
[DNAFieldAttribute(10, "int", "last_not_disabled_marker_framenr", "int", 4, false, 116)]
|
||||
[DNAFieldAttribute(4, "int", 10, "last_not_disabled_marker_framenr", "int", false, 116)]
|
||||
public int last_not_disabled_marker_framenr;
|
||||
public MovieTrackingDopesheetChannel() {
|
||||
this.ptr_next = default;
|
||||
this.ptr_prev = default;
|
||||
this.ptr_track = default;
|
||||
this.next = default;
|
||||
this.prev = default;
|
||||
this.track = default;
|
||||
this._pad = default;
|
||||
this.name = default;
|
||||
this.tot_segment = default;
|
||||
this.ptr_segments = default;
|
||||
this.segments = default;
|
||||
this.max_segment = default;
|
||||
this.total_frames = default;
|
||||
this.first_not_disabled_marker_framenr = default;
|
||||
this.last_not_disabled_marker_framenr = default;
|
||||
}
|
||||
public MovieTrackingDopesheetChannel(MovieTrackingDopesheetChannel ptr_next, MovieTrackingDopesheetChannel ptr_prev, MovieTrackingTrack ptr_track, char[] _pad, char[] name, int tot_segment, int ptr_segments, int max_segment, int total_frames, int first_not_disabled_marker_framenr, int last_not_disabled_marker_framenr) {
|
||||
this.ptr_next = ptr_next;
|
||||
this.ptr_prev = ptr_prev;
|
||||
this.ptr_track = ptr_track;
|
||||
public MovieTrackingDopesheetChannel(MovieTrackingDopesheetChannel next, MovieTrackingDopesheetChannel prev, MovieTrackingTrack track, char[] _pad, char[] name, int tot_segment, int segments, int max_segment, int total_frames, int first_not_disabled_marker_framenr, int last_not_disabled_marker_framenr) {
|
||||
this.next = next;
|
||||
this.prev = prev;
|
||||
this.track = track;
|
||||
this._pad = _pad;
|
||||
this.name = name;
|
||||
this.tot_segment = tot_segment;
|
||||
this.ptr_segments = ptr_segments;
|
||||
this.segments = segments;
|
||||
this.max_segment = max_segment;
|
||||
this.total_frames = total_frames;
|
||||
this.first_not_disabled_marker_framenr = first_not_disabled_marker_framenr;
|
||||
|
||||
Reference in New Issue
Block a user