Status
SteamPeaks
ChartsSalesUpcomingPatchesNewsCalculator
New on SteamEvery app, DLC and depot the minute Steam creates itAppsEvery app on Steam, newest change firstPackagesSubs and bundles, and what each containsDepotsDepots, manifests and install sizesTagsSteam's user tags and the games under themDevelopers & publishersCompanies and their cataloguesTechnologiesEngines, SDKs and anti-cheat found in the filesChange historyEvery PICS changelist as it lands
SignalsNineteen readings of the whole catalogueCompareAny games side by sideRecordsAll-time peaks and the days they were setReportsWeekly and monthly write-upsAlerts & newsroomWatch a game, get told when it movesSteam statusIs Steam up, right nowWeb API explorerTry the endpoints in the browser
NewsSteam's own announcements and the sales calendarCalculatorWhat a Steam account is worth, and its pile of shame
/
Sign in
/
SteamPeaks
The ultimate resource for Steam data.
ExploreChartsSalesSales and festsUpcomingPatchesNewsRecordsTrendingSignals
DatabaseAppsPackagesDepotsTagsDevelopersTechnologiesChange history
ToolsCalculatorCompareSearchAlertsSteam statusAPI
SiteMethodologyFAQDiscordSupportSign in via Steam
Not affiliated with Valve or Steam. Game names and artwork belong to their owners. All times UTC.
PrivacyCookiesFair useStatus
ResoniteNews2026.9.1.1216 - Raw Mesh, YouTube fixes, component cleanup, fixes
Game update

2026.9.1.1216 - Raw Mesh, YouTube fixes, component cleanup, fixes

Resonite · published 1 Sep 2026, 20:31 UTC

All newsPlayers around this dateRead on Steam

Hello everyone!

I got another update for you! I'll be moving back to the work on the IK hopefully, so this is kinda capping off some of the collections stuff for a little bit (except crashes and some fixes), but there's one juicy bit for it - RawMesh!

This lets you generate & update custom meshes with ProtoFlux! This should open up a whole new class of options and tools for creativity, so I can't wait to see what you'll make.

I've also done a bunch of tweaking and improvements to the YouTube/streaming services, it should behave better and streams should play again. You can now set the preferred resolution in settings, which is default to 720p which seems to work well.

We might need to do more tweaks for some formats, if you got videos that have issues still, please make reports.

We also got more component organization by @ryuvi, all the internal components are now properly hidden to indicate that they're not intended for direct use.

New Features:


- Added RawMesh procedural mesh (requested by @jackthefoxotter, @shdw_x, @aegis_wolf, issue #7051)
-- Under Assets / Procedural Meshes
-- This allows you to define a raw mesh with raw sync arrays of its buffers
-- This mostly wraps the raw mesh representation with some little extra validation on top
-- Supports most mesh properties (except skinned mesh data, which could potentially be added later) - Normals, Tangents, Colors, UV0 - UV7
-- Supports multiple submeshes (point & triangle topologies)
-- It's your responsibility to ensure good mesh data and indicie data.
-- Number of vertices is defined by the Points array
-- If other buffers contain incomplete data, it will be set to default value of that type
-- If a buffer is empty the mesh will not have that data at all (e.g. set Colors to length 0 array so there's no vertex colors at all)
-- Triangle submesh requires 3 indicies for each triangle
-- The class tracks how much data you modify. If you only modify part of the data, the updates will be more efficient than updating the entire mesh
-- Similarly if you don't update any submeshes, those will be skipped in subsequent updates, leading to more efficient updates when only vertices have been updated

- Added Preferred Resolution to Video Streaming Services settings
-- This allows you to customize default resolution of streaming video service videos (like YouTube)
-- By default this is set to 720p
- Added Multiply(colorX) processing for textures (requested by @jackthefoxotter, issue #2783, @Art0007i, issue #7117)

Tweaks:


- Tweaked video/audio stream picking heuristics to improve YouTube video playback (based on report by @foxbox., @lucasro7, @foxworth, @luxkitty, @dustysprinkles @dominion , issue #7116)
- Hid many unusable components in the Component Selector from the Uncategorized component category (issue #6506, reported and implemented by @ryuvi)
-- All hidden components were either legacy components, are internal to the function of the engine or ProtoFlux, or otherwise had no functional use to users

Fixes:


- Fixed live streams and other videos not loading (reported by @konto250, issue #7118)
- Fixed generic delegate types not being constrainted specifically to delegates, resulting in crashes when used with invalid types (reported by @3x1t_5tyl3, @nepushiro, issue #7125)
-- This is a holdover from Unity Mono times, which didn't support Delegates as generic constraints
- Fixed Coder<T> incorrectly returning false for nullable types when both values are null (reported by @mpmxyz, issue #7112, fix contributed by @mpmxyz )


- Fixed Yellow-Dog-Man/Resonite-Issues#7112 (Coder.Equals<T?>.Equals(null,null) was false, should have been true) by @mpmxyz in #60
- Added failing test for Yellow-Dog-Man/Resonite-Issues#7112 (Coder<T?>.Equals(null, null) should not be false) by @mpmxyz in #61
- Update Renderite.Shared to 1.3.1 by @frooxius in #62

More from Resonite

Other announcements

All news
Game update14 Sep 20262026.9.14.1239 - FABRIK bone stiffness, more holiday nodes, fixes & tweaksHello everyone! I've got another tidbit of StrikePose for you, our new in-house IK - FABRIK chain now supports bone stiffness! This is a new mechanism that allows to prevent weird kinks and bends when solving bones, making them look much nicer. This was implemented to make spine behave well for the Biped IK, I'll be integrating this soonish and continuing work the full body IK. There's a few ot…Community12 Sep 2026Resonite Beta Patch notes 2026.08Hello! We've had a ton of updates for the past month, and there's lots of content to go over. So - we made a short video to do just that! And if you are interested in seeing what we did over the past month, we've also uploaded our monthly Recap stream for August, which is where we take an hour to go over and showcase the highlights of August! This is also available on our YouTube channel, here:…Game update9 Sep 20262026.9.9.1136 - FFT improvements, Video Stream opt-out, asset cleanup optimizeHello everyone! Just a small update, addressing some issues with the FFT analyzer. There was some confusion with how the library we use handles real values, where they're not the real parts, but actually complex numbers interweaved. This address this, this update adds several new modes. The output by default now is magnitudes of the complex numbers, which should be easier to work with for visua…