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,28 @@
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public class XrActionMapBinding {
public XrActionMapBinding ptr_next;
public XrActionMapBinding ptr_prev;
public char[] name = new System.Char[64];
public char[] profile = new System.Char[256];
public ListBase component_paths;
public float float_threshold;
public short axis_flag;
public char[] _pad = new System.Char[2];
public float[] pose_location = new System.Single[3];
public float[] pose_rotation = new System.Single[3];
public XrActionMapBinding(XrActionMapBinding ptr_next, XrActionMapBinding ptr_prev, char[] name, char[] profile, ListBase component_paths, float float_threshold, short axis_flag, char[] _pad, float[] pose_location, float[] pose_rotation) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
this.name = name;
this.profile = profile;
this.component_paths = component_paths;
this.float_threshold = float_threshold;
this.axis_flag = axis_flag;
this._pad = _pad;
this.pose_location = pose_location;
this.pose_rotation = pose_rotation;
}
}
}