Added Generation Output

This commit is contained in:
Samuele Lorefice
2025-01-22 02:23:29 +01:00
parent 83b207b799
commit fa78292a67
936 changed files with 31758 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public struct ActionStrip {
public int8_t strip_type;
public uchar[] _pad0 = new uchar[3];
public int data_index;
public float frame_start;
public float frame_end;
public float frame_offset;
public uchar[] _pad1 = new uchar[4];
public ActionStrip(int8_t strip_type, uchar[] _pad0, int data_index, float frame_start, float frame_end, float frame_offset, uchar[] _pad1) {
this.strip_type = strip_type;
this._pad0 = _pad0;
this.data_index = data_index;
this.frame_start = frame_start;
this.frame_end = frame_end;
this.frame_offset = frame_offset;
this._pad1 = _pad1;
}
}
}