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,23 +15,23 @@ namespace BlendFile.DNA {
[DNAClassAttribute(798, "AudioData", 32)]
public struct AudioData {
[DNAFieldAttribute(0, "int", "mixrate", "int", 4, false)]
[DNAFieldAttribute(0, "int", "mixrate", "int", 4, false, 0)]
public int mixrate;
[DNAFieldAttribute(1, "float", "main", "float", 4, false)]
[DNAFieldAttribute(1, "float", "main", "float", 4, false, 4)]
public float main;
[DNAFieldAttribute(2, "float", "speed_of_sound", "float", 4, false)]
[DNAFieldAttribute(2, "float", "speed_of_sound", "float", 4, false, 8)]
public float speed_of_sound;
[DNAFieldAttribute(3, "float", "doppler_factor", "float", 4, false)]
[DNAFieldAttribute(3, "float", "doppler_factor", "float", 4, false, 12)]
public float doppler_factor;
[DNAFieldAttribute(4, "int", "distance_model", "int", 4, false)]
[DNAFieldAttribute(4, "int", "distance_model", "int", 4, false, 16)]
public int distance_model;
[DNAFieldAttribute(5, "short", "flag", "short", 2, false)]
[DNAFieldAttribute(5, "short", "flag", "short", 2, false, 20)]
public short flag;
[DNAFieldAttribute(6, "char", "_pad[2]", "System.Char[]", 2, false)]
[DNAFieldAttribute(6, "char", "_pad[2]", "System.Char[]", 2, false, 22)]
public char[] _pad = new System.Char[2];
[DNAFieldAttribute(7, "float", "volume", "float", 4, false)]
[DNAFieldAttribute(7, "float", "volume", "float", 4, false, 24)]
public float volume;
[DNAFieldAttribute(8, "char", "_pad2[4]", "System.Char[]", 4, false)]
[DNAFieldAttribute(8, "char", "_pad2[4]", "System.Char[]", 4, false, 28)]
public char[] _pad2 = new System.Char[4];
public AudioData() {
this.mixrate = default;