Files
BlenderSharp/BlendFile/DNA/XrSessionSettings.cs

52 lines
2.2 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 BlendFile.CompatTypes;
using System;
// Automatically generated by BlenderSharp at 22/01/2025 02:33:14
namespace BlendFile.DNA {
public class XrSessionSettings {
public View3DShading shading;
public float base_scale;
public char[] _pad = new System.Char[3];
public char base_pose_type;
public Object ptr_base_pose_object;
public float[] base_pose_location = new System.Single[3];
public float base_pose_angle;
public char draw_flags;
public char controller_draw_style;
public char[] _pad2 = new System.Char[2];
public float clip_start;
public float clip_end;
public int flag;
public int object_type_exclude_viewport;
public int object_type_exclude_select;
public XrSessionSettings(View3DShading shading, float base_scale, char[] _pad, char base_pose_type, Object ptr_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.ptr_base_pose_object = ptr_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;
}
}
}