klein-j

Results 7 issues of klein-j

I assigned a 3D sound to a large building. Attenuation works as I would expect it, I seem to have good control over the sound volume for different distances. However...

When loading certain ogg-files (which play fine in VLC), `stb_vorbis_stream_length_in_samples` returns 0. This leads to a crash in `Wav::loadogg` since no space is allocated. Is there a good way to...

When a `SoLoud::Wav` object is copied, a shallow copy is done. This can lead to deleting m_data twice, which crashes. Fix: Have proper Copy-Constructor and assignment operator, or mark them...

Version "SoLoud 20200207" (most recent as of today) I have a scene with plenty of 3D voices and 2D background music. I want the music to be always audible, however...

The "Repair explorer extension" option deletes Windows Registry Keys that do not belong to Seafile, which breaks other applications. ShellOverlayIcons are stored in "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\ShellIconOverlayIdentifiers" for all applications. I had a...

bug-user-experience

I downloaded the Addon, installed it (to Blender 4.2) and installed moderngl in python. This was verified by opening Python inside Blender and running `import moderngl`. Hydra does not seem...

In the file `soloud_audiosource.cpp` we find the function: ``` result AudioSourceInstance::seek(double aSeconds, float *mScratch, unsigned int mScratchSize) { ... while (samples_to_discard) { int samples = mScratchSize / mChannels; if (samples...