Added memoryOffset value to DNAFieldAttribute, regenerated files.

This commit is contained in:
Samuele Lorefice
2025-02-20 21:00:55 +01:00
parent b171b65aa5
commit f383debd18
939 changed files with 9636 additions and 9605 deletions

View File

@@ -15,21 +15,21 @@ namespace BlendFile.DNA {
[DNAClassAttribute(145, "CameraStereoSettings", 24)]
public struct CameraStereoSettings {
[DNAFieldAttribute(0, "float", "interocular_distance", "float", 4, false)]
[DNAFieldAttribute(0, "float", "interocular_distance", "float", 4, false, 0)]
public float interocular_distance;
[DNAFieldAttribute(1, "float", "convergence_distance", "float", 4, false)]
[DNAFieldAttribute(1, "float", "convergence_distance", "float", 4, false, 4)]
public float convergence_distance;
[DNAFieldAttribute(2, "short", "convergence_mode", "short", 2, false)]
[DNAFieldAttribute(2, "short", "convergence_mode", "short", 2, false, 8)]
public short convergence_mode;
[DNAFieldAttribute(3, "short", "pivot", "short", 2, false)]
[DNAFieldAttribute(3, "short", "pivot", "short", 2, false, 10)]
public short pivot;
[DNAFieldAttribute(4, "short", "flag", "short", 2, false)]
[DNAFieldAttribute(4, "short", "flag", "short", 2, false, 12)]
public short flag;
[DNAFieldAttribute(5, "char", "_pad[2]", "System.Char[]", 2, false)]
[DNAFieldAttribute(5, "char", "_pad[2]", "System.Char[]", 2, false, 14)]
public char[] _pad = new System.Char[2];
[DNAFieldAttribute(6, "float", "pole_merge_angle_from", "float", 4, false)]
[DNAFieldAttribute(6, "float", "pole_merge_angle_from", "float", 4, false, 16)]
public float pole_merge_angle_from;
[DNAFieldAttribute(7, "float", "pole_merge_angle_to", "float", 4, false)]
[DNAFieldAttribute(7, "float", "pole_merge_angle_to", "float", 4, false, 20)]
public float pole_merge_angle_to;
public CameraStereoSettings() {
this.interocular_distance = default;