
A new update has been released, you can view the full changes on our blog post.
https://sbox.game/news/update-26-09-15
`Painter` is a small utility struct that replaces `HudPainter` and the panel rendering system. It's now used to render the whole panel system and you can use it to render things like UI, HUDs, panels and world panels manually using a common sense API.Shapes are generally SDF rendered so they are totally antialiased and beautiful. We have the ability to draw Arcs, Arrows, Bezier Lines, Capsules, Circles, Credcents, Crosses, Hearts, Lines, Poly Lines, Polygons, Quads, Rects, Rings, Stars, Ticks and Triangles..
We support a bunch of different strokes. Inside, center and outside. Solid, dashed, dotted..
And fill can be a color, an image, a radial gradient, a linear gradient or a conic gradient..
Line rendering supports different miters, including bevel and round, with a miter limit..
This all uses a batching system under the hood, so performance is actually pretty insane. This demo is all rendered in one single draw call.
Here's what the code looks like, in a component..
void Update()
{
using var painter = Camera.BeginHud(); var color = Color.Green;
painter.Fill = Fill.LinearGradient( Color.Red, Color.White, 45.0f );
painter.Stroke = Stroke.Solid( color, 3 );
painter.Circle( new Vector2( 100, 100 ), 50 );
}
This change also makes `IPanelDraw` now redundant, a you can now just override the `OnDraw( Painter painter )` function.
Text Rendering has been the oldest component of our engine, it worked well, but it had it's caveats, specially for being generated from the CPU, was blurry on any transform. Since we are going to focus on using our UI system for tools, we ought to make text rendering awesome. Continuing from my work from a few hackweeks back, I have fully implemented GPU Text Rendering based on the Lengyel algorithm to the engine while retaining all the current API, curves are passed to GPU and all drawn on the shader. You don't need to do anything, it just works, supports CJK, emojis, and everything that the previous system supported, and looks unbelievably sharp even from a millimeter away
This ends up being significantly faster than our previous system while always looking awesome.
All still rendered using our UI renderer in one draw call
When the host leaves, their snapshot state now gets restored on the new host, host-only objects included. If your state survives a late join, it should survive host migration.
Running code doesn't carry over though, so anything mid-flight needs resuming on the new host. There are analyzers to help you check that your state and behaviour are migration safe. You can find more detailed information in the docs.
We added hover cards to the menu. Hover a game and you can quickly glance at the info you need to decide whether to play.
We've also reworked the game modals and toasts elsewhere in the menu. Making game interactions like Reviews, Favorite, Hide Game... more visible and consistent.
Changing graphics settings in the editor previously meant launching a scene and opening the in game settings menu.
There's now a dropdown in the viewport controls to switch quality presets directly.
Here's a new game using the 2d sprite system for you to check out:
https://sbox.game/facepunch/blockparty/
It's got leaderboards with replays, a level editor with workshop support, gif exports, and some other fun features.
GameObject cloning is now ~2.6x faster with about 38% fewer allocations in synthetic tests. Anything spawning prefabs at runtime benefits.
In our actual tests it's less significant because the main bottleneck here for cloning is spawning models collisions etc.. the actual serialization overhead of the cloning was already quite low. Network snapshots are also cheaper on the host. Scene state is still captured on the main thread, but JSON, blob and packet encoding now runs on workers, so players joining or loading in cost the host a lot less.
A bunch of Mac and Linux improvements:
I've improved the open source workflow a bit more, adding a simpler Setup.bat and now Setup.sh for Linux & Mac.
The Setup.bat now has progress reporting, mainly for the download steps as you had no idea how much or how long you were downloading for before previously. On top of that the setup now installs Git hooks - each time you pull or switch branch the download step is run automatically, meaning you don't have to run Setup.bat every time.
Redesigned the storage settings page.
I've implemented the CSS property overscroll-behavior which lets you both disable the edge bounce of scrolling and also prevent scrolling cascading to the parent panel.
🎁 Added
UI & CSS
Editor
Networking
Menu
Rendering
Platform
🧼 Improved
UI & CSS
Performance
Networking
Navigation
Editor
Menu
Platform
🪛 Fixed
UI & CSS
Editor
Navigation
Physics
Rendering
Networking
Menu
Platform
Characters