Regenerated all the files

This commit is contained in:
Samuele Lorefice
2025-01-22 20:24:55 +01:00
parent 162f888600
commit bf1eb8201c
939 changed files with 10620 additions and 0 deletions

View File

@@ -11,14 +11,22 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public struct MovieTrackingDopesheet {
[DNAFieldAttribute(0, "int", "ok", 4)]
public int ok;
[DNAFieldAttribute(1, "short", "sort_method", 2)]
public short sort_method;
[DNAFieldAttribute(2, "short", "flag", 2)]
public short flag;
[DNAFieldAttribute(3, "ListBase", "coverage_segments", 16)]
public ListBase coverage_segments;
[DNAFieldAttribute(4, "ListBase", "channels", 16)]
public ListBase channels;
[DNAFieldAttribute(5, "int", "tot_channel", 4)]
public int tot_channel;
[DNAFieldAttribute(6, "char", "_pad[4]", 1)]
public char[] _pad = new System.Char[4];
public MovieTrackingDopesheet(int ok, short sort_method, short flag, ListBase coverage_segments, ListBase channels, int tot_channel, char[] _pad) {
this.ok = ok;