- Added auto generation of DNAClass attributes on file generation - Regenerated all files
49 lines
2.0 KiB
C#
49 lines
2.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(150, "CameraDOFSettings")]
|
|
public class CameraDOFSettings {
|
|
[DNAFieldAttribute(0, "Object", "*focus_object", 1160)]
|
|
public Object ptr_focus_object;
|
|
[DNAFieldAttribute(1, "char", "focus_subtarget[64]", 1)]
|
|
public char[] focus_subtarget = new System.Char[64];
|
|
[DNAFieldAttribute(2, "float", "focus_distance", 4)]
|
|
public float focus_distance;
|
|
[DNAFieldAttribute(3, "float", "aperture_fstop", 4)]
|
|
public float aperture_fstop;
|
|
[DNAFieldAttribute(4, "float", "aperture_rotation", 4)]
|
|
public float aperture_rotation;
|
|
[DNAFieldAttribute(5, "float", "aperture_ratio", 4)]
|
|
public float aperture_ratio;
|
|
[DNAFieldAttribute(6, "int", "aperture_blades", 4)]
|
|
public int aperture_blades;
|
|
[DNAFieldAttribute(7, "short", "flag", 2)]
|
|
public short flag;
|
|
[DNAFieldAttribute(8, "char", "_pad[2]", 1)]
|
|
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;
|
|
}
|
|
}
|
|
}
|