regenerate files

This commit is contained in:
mm00
2025-02-19 18:48:50 +01:00
parent 33a8f1baf3
commit b66247488e
937 changed files with 2572 additions and 2562 deletions

View File

@@ -13,11 +13,11 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
[DNAClassAttribute(803, "TimeMarker")]
[DNAClassAttribute(803, "TimeMarker", 104)]
public class TimeMarker {
[DNAFieldAttribute(0, "TimeMarker", "*next", "TimeMarker", 4, true)]
[DNAFieldAttribute(0, "TimeMarker", "*next", "TimeMarker", 8, true)]
public TimeMarker ptr_next;
[DNAFieldAttribute(1, "TimeMarker", "*prev", "TimeMarker", 4, true)]
[DNAFieldAttribute(1, "TimeMarker", "*prev", "TimeMarker", 8, true)]
public TimeMarker ptr_prev;
[DNAFieldAttribute(2, "int", "frame", "int", 4, false)]
public int frame;
@@ -25,9 +25,9 @@ namespace BlendFile.DNA {
public char[] name = new System.Char[64];
[DNAFieldAttribute(4, "int", "flag", "int", 4, false)]
public int flag;
[DNAFieldAttribute(5, "Object", "*camera", "Object", 4, true)]
[DNAFieldAttribute(5, "Object", "*camera", "Object", 8, true)]
public Object ptr_camera;
[DNAFieldAttribute(6, "IDProperty", "*prop", "IDProperty", 4, true)]
[DNAFieldAttribute(6, "IDProperty", "*prop", "IDProperty", 8, true)]
public IDProperty ptr_prop;
public TimeMarker() {
this.ptr_next = default;