40 lines
1.5 KiB
C#
40 lines
1.5 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 CameraDOFSettings {
|
|
public Object ptr_focus_object;
|
|
public char[] focus_subtarget = new System.Char[64];
|
|
public float focus_distance;
|
|
public float aperture_fstop;
|
|
public float aperture_rotation;
|
|
public float aperture_ratio;
|
|
public int aperture_blades;
|
|
public short flag;
|
|
public char[] _pad = new System.Char[2];
|
|
public CameraDOFSettings(Object ptr_focus_object, char[] focus_subtarget, float focus_distance, float aperture_fstop, float aperture_rotation, float aperture_ratio, int aperture_blades, short flag, char[] _pad) {
|
|
this.ptr_focus_object = ptr_focus_object;
|
|
this.focus_subtarget = focus_subtarget;
|
|
this.focus_distance = focus_distance;
|
|
this.aperture_fstop = aperture_fstop;
|
|
this.aperture_rotation = aperture_rotation;
|
|
this.aperture_ratio = aperture_ratio;
|
|
this.aperture_blades = aperture_blades;
|
|
this.flag = flag;
|
|
this._pad = _pad;
|
|
}
|
|
}
|
|
}
|