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 View3DCursor {
public float[] location = new System.Single[3];
public float[] rotation_quaternion = new System.Single[4];
public float[] rotation_euler = new System.Single[3];
public float[] rotation_axis = new System.Single[3];
public float rotation_angle;
public short rotation_mode;
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;
this.rotation_quaternion = rotation_quaternion;
this.rotation_euler = rotation_euler;
this.rotation_axis = rotation_axis;
this.rotation_angle = rotation_angle;
this.rotation_mode = rotation_mode;
this._pad = _pad;
}
}
}