Generated new code and added initial data handling

This commit is contained in:
mm00
2025-01-27 19:24:50 +01:00
parent ebcc629feb
commit 146a3992ce
940 changed files with 11560 additions and 9 deletions

View File

@@ -33,6 +33,17 @@ namespace BlendFile.DNA {
public float volume;
[DNAFieldAttribute(8, "char", "_pad2[4]", 1)]
public char[] _pad2 = new System.Char[4];
public AudioData() {
this.mixrate = default;
this.main = default;
this.speed_of_sound = default;
this.doppler_factor = default;
this.distance_model = default;
this.flag = default;
this._pad = default;
this.volume = default;
this._pad2 = default;
}
public AudioData(int mixrate, float main, float speed_of_sound, float doppler_factor, int distance_model, short flag, char[] _pad, float volume, char[] _pad2) {
this.mixrate = mixrate;
this.main = main;