Hello everyone!
Got another update for you with a bunch of goodies. I've been making more work on the IK again, but there's a few collection-related goodies that have still trickled in!
Notably, there's now FFT analyzer! You can make cool music visualizers and other stuff.
If you're on Linux, the new QUIC protocol should now also be supported out of the box thanks to @bluecyro!
- Added FFT_RealAnalyzer (requested by @DoubleStyx, issue #48, @frooxius, with consults with @bluecyro)
-- This performs FFT analysis of audio data (similar to Viseme/Volume meter analyzers)
-- Data is output as raw FFT array of float (this array is local to each user)
-- Changes are triggered whenever analysis completes
-- Configurable FFT buffer size from 128 to 8192
-- NormalizeOutput will scale values depending on the buffer size to stay within -1.0...1.0 range (on by default)
-- You can either use Hamming filter (default) or None
-- Under Media/Utility
-- More features can be added (window filters, potentially downsampling)
- Added QUIC libraries for 64-bit Linux systems
-- Linux users should now be able to enjoy the benefits of our new QUIC networking protocol without workarounds (issue #6965, implemented by @bluecyro)
- Added CharsToString node which constructs a new string from IEnumerable<char> input (requested by @3x1t_5tyl3, issue #7150)
-- This will accept any collection of chars and construct a string from it
- Added TypeList component (under Data) (requested by @reddneko, issue #7156)
- Added TypeDictionary<K> component (requested by @reddneko, issue #7156)
- Snapping system now respects Enabled state on snappable components (requested by @_deltawolf, issue #7147)
- Merged Chinese (Taiwan) update by @meowwei
- Merged Chinese (Taiwan) update by @meowwei, @ninnana. and @modimobeikete
- Fixed document entity not being fully initialized on import
-- This fixes document viewer (e.g. for PDF) missing proper item name and spawning user
- Fixed Resonite completely freezing in rare cases when acceleration structures get corrupted
-- This will now only crash the world, rather than freezing the entire engine
- Fixed Add operation with dictionaries causing crash when the key is null (reported by @3x1t_5tyl3, issue #7190)
-- The operation will now fail for null keys (these cannot be used as keys)