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 StripTransform {
[DNAFieldAttribute(0, "float", "xofs", 4)]
public float xofs;
[DNAFieldAttribute(1, "float", "yofs", 4)]
public float yofs;
[DNAFieldAttribute(2, "float", "scale_x", 4)]
public float scale_x;
[DNAFieldAttribute(3, "float", "scale_y", 4)]
public float scale_y;
[DNAFieldAttribute(4, "float", "rotation", 4)]
public float rotation;
[DNAFieldAttribute(5, "float", "origin[2]", 4)]
public float[] origin = new System.Single[2];
[DNAFieldAttribute(6, "int", "filter", 4)]
public int filter;
public StripTransform(float xofs, float yofs, float scale_x, float scale_y, float rotation, float[] origin, int filter) {
this.xofs = xofs;