Files
BlenderSharp/BlendFile/DNA/XrSessionSettings.cs
2025-03-11 19:12:04 +01:00

84 lines
4.0 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
namespace BlendFile.DNA {
using BlendFile;
[DNAClassAttribute(1046, "XrSessionSettings", 1000)]
public class XrSessionSettings {
[DNAFieldAttribute(944, "View3DShading", 0, "shading", "View3DShading", false, 0)]
public View3DShading shading;
[DNAFieldAttribute(4, "float", 1, "base_scale", "float", false, 944)]
public float base_scale;
[DNAArrayAttribute(3, "char", 2, "_pad[3]", "System.Char[]", 3, 948)]
public char[] _pad = new System.Char[3];
[DNAFieldAttribute(1, "char", 3, "base_pose_type", "char", false, 951)]
public char base_pose_type;
[DNAFieldAttribute(8, "Object", 4, "*base_pose_object", "Object", true, 952)]
public Object base_pose_object;
[DNAArrayAttribute(12, "float", 5, "base_pose_location[3]", "System.Single[]", 3, 960)]
public float[] base_pose_location = new System.Single[3];
[DNAFieldAttribute(4, "float", 6, "base_pose_angle", "float", false, 972)]
public float base_pose_angle;
[DNAFieldAttribute(1, "char", 7, "draw_flags", "char", false, 976)]
public char draw_flags;
[DNAFieldAttribute(1, "char", 8, "controller_draw_style", "char", false, 977)]
public char controller_draw_style;
[DNAArrayAttribute(2, "char", 9, "_pad2[2]", "System.Char[]", 2, 978)]
public char[] _pad2 = new System.Char[2];
[DNAFieldAttribute(4, "float", 10, "clip_start", "float", false, 980)]
public float clip_start;
[DNAFieldAttribute(4, "float", 11, "clip_end", "float", false, 984)]
public float clip_end;
[DNAFieldAttribute(4, "int", 12, "flag", "int", false, 988)]
public int flag;
[DNAFieldAttribute(4, "int", 13, "object_type_exclude_viewport", "int", false, 992)]
public int object_type_exclude_viewport;
[DNAFieldAttribute(4, "int", 14, "object_type_exclude_select", "int", false, 996)]
public int object_type_exclude_select;
public XrSessionSettings() {
this.shading = default;
this.base_scale = default;
this._pad = default;
this.base_pose_type = default;
this.base_pose_object = default;
this.base_pose_location = default;
this.base_pose_angle = default;
this.draw_flags = default;
this.controller_draw_style = default;
this._pad2 = default;
this.clip_start = default;
this.clip_end = default;
this.flag = default;
this.object_type_exclude_viewport = default;
this.object_type_exclude_select = default;
}
public XrSessionSettings(View3DShading shading, float base_scale, char[] _pad, char base_pose_type, Object base_pose_object, float[] base_pose_location, float base_pose_angle, char draw_flags, char controller_draw_style, char[] _pad2, float clip_start, float clip_end, int flag, int object_type_exclude_viewport, int object_type_exclude_select) {
this.shading = shading;
this.base_scale = base_scale;
this._pad = _pad;
this.base_pose_type = base_pose_type;
this.base_pose_object = base_pose_object;
this.base_pose_location = base_pose_location;
this.base_pose_angle = base_pose_angle;
this.draw_flags = draw_flags;
this.controller_draw_style = controller_draw_style;
this._pad2 = _pad2;
this.clip_start = clip_start;
this.clip_end = clip_end;
this.flag = flag;
this.object_type_exclude_viewport = object_type_exclude_viewport;
this.object_type_exclude_select = object_type_exclude_select;
}
}
}