Files
BlenderSharp/BlendFile/DNA/TimeMarker.cs
2025-03-12 19:02:40 +01:00

52 lines
1.9 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(803, "TimeMarker", 104)]
public class TimeMarker {
[DNAFieldAttribute(8, "TimeMarker", 0, "*next", "TimeMarker", true, 0)]
public TimeMarker next;
[DNAFieldAttribute(8, "TimeMarker", 1, "*prev", "TimeMarker", true, 8)]
public TimeMarker prev;
[DNAFieldAttribute(4, "int", 2, "frame", "int", false, 16)]
public int frame;
[DNAArrayAttribute(64, "char", 3, "name[64]", "System.Char[]", 64, false, 20)]
public char[] name = new System.Char[64];
[DNAFieldAttribute(4, "int", 4, "flag", "int", false, 84)]
public int flag;
[DNAFieldAttribute(8, "Object", 5, "*camera", "Object", true, 88)]
public Object camera;
[DNAFieldAttribute(8, "IDProperty", 6, "*prop", "IDProperty", true, 96)]
public IDProperty prop;
public TimeMarker() {
this.next = default;
this.prev = default;
this.frame = default;
this.name = default;
this.flag = default;
this.camera = default;
this.prop = default;
}
public TimeMarker(TimeMarker next, TimeMarker prev, int frame, char[] name, int flag, Object camera, IDProperty prop) {
this.next = next;
this.prev = prev;
this.frame = frame;
this.name = name;
this.flag = flag;
this.camera = camera;
this.prop = prop;
}
}
}