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 View3DCursor {
[DNAFieldAttribute(0, "float", "location[3]", 4)]
public float[] location = new System.Single[3];
[DNAFieldAttribute(1, "float", "rotation_quaternion[4]", 4)]
public float[] rotation_quaternion = new System.Single[4];
[DNAFieldAttribute(2, "float", "rotation_euler[3]", 4)]
public float[] rotation_euler = new System.Single[3];
[DNAFieldAttribute(3, "float", "rotation_axis[3]", 4)]
public float[] rotation_axis = new System.Single[3];
[DNAFieldAttribute(4, "float", "rotation_angle", 4)]
public float rotation_angle;
[DNAFieldAttribute(5, "short", "rotation_mode", 2)]
public short rotation_mode;
[DNAFieldAttribute(6, "char", "_pad[6]", 1)]
public char[] _pad = new System.Char[6];
public View3DCursor(float[] location, float[] rotation_quaternion, float[] rotation_euler, float[] rotation_axis, float rotation_angle, short rotation_mode, char[] _pad) {
this.location = location;