Regenerated codefiles

This commit is contained in:
Samuele Lorefice
2025-03-04 18:48:04 +01:00
parent 8bbfb49720
commit 8e4eac0568
937 changed files with 16011 additions and 16181 deletions

View File

@@ -14,14 +14,14 @@ namespace BlendFile.DNA {
using BlendFile;
[DNAClassAttribute(51, "DualQuat", 100)]
public struct DualQuat {
[DNAFieldAttribute(0, "float", "quat[4]", "System.Single[]", 16, false, 0)]
public class DualQuat {
[DNAFieldAttribute(16, "float", 0, "quat[4]", "System.Single[]", false, 0)]
public float[] quat = new System.Single[4];
[DNAFieldAttribute(1, "float", "trans[4]", "System.Single[]", 16, false, 16)]
[DNAFieldAttribute(16, "float", 1, "trans[4]", "System.Single[]", false, 16)]
public float[] trans = new System.Single[4];
[DNAFieldAttribute(2, "float", "scale[4][4]", "System.Single[,]", 64, false, 32)]
[DNAFieldAttribute(64, "float", 2, "scale[4][4]", "System.Single[,]", false, 32)]
public float[,] scale = new System.Single[4,4];
[DNAFieldAttribute(3, "float", "scale_weight", "float", 4, false, 96)]
[DNAFieldAttribute(4, "float", 3, "scale_weight", "float", false, 96)]
public float scale_weight;
public DualQuat() {
this.quat = default;