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

@@ -59,6 +59,30 @@ namespace BlendFile.DNA {
public int audio_channels;
[DNAFieldAttribute(21, "int", "samplerate", 4)]
public int samplerate;
public bSound() {
this.id = default;
this.name = default;
this.ptr_packedfile = default;
this.ptr_handle = default;
this.ptr_newpackedfile = default;
this.ptr_ipo = default;
this.volume = default;
this.attenuation = default;
this.pitch = default;
this.min_gain = default;
this.max_gain = default;
this.distance = default;
this.flags = default;
this.tags = default;
this._pad = default;
this.offset_time = default;
this.ptr_cache = default;
this.ptr_waveform = default;
this.ptr_playback_handle = default;
this.ptr_spinlock = default;
this.audio_channels = default;
this.samplerate = default;
}
public bSound(
ID id,
char[] name,