I wanted to provide a bunch of built in entities in Sandbox Mode. I think in GMod things were automatically made into tools, when they didn't need to be. Like lights for example.

In Sandbox Mode we have a bunch of built in entities, and you can use entities from the workshop too in the same way. Here's an example of lights, fog and NPCs being created.
Entities in Sandbox Mode are controllable now. This is early stages, but right now you can bind them to your in game inputs. The controls only work if you're in a chair connected to them somehow.

What this means is that when you make something, anyone can control it. You can duplicate it and you and a friend can control their own copies.
This is pretty fun to play with, and I expect it's going to evolve over time.
I added a universal way to get thumbnail images.
  • thumb:entities/sents/npc/scientist.sent - resources/assets
  • thumb:mount://ns2/ns2/models/effects/exosuit_part1.model.vmdl -mount files
  • thumb:facepunch.snowman - packages
This greatly simplifies UI like the spawnmenu that needs to show thumbnails for these things.

We also add AssetTypeFlags.IncludeThumbnails. If this is set then when the package is published, any asset types with this flag will include a "[path].c.png" thumbnail image of it.
I've sexed up the default pause menu. I really want to encourage all games to want to use the default pause menu, so I'm pushing more useful features to it, showing more stats. This is a basic layout change for now, but the intention is to show achievements, leaderboards, stats, reviews and forums here.
I switched the UI animation system to use doubles instead of floats under the hood.

This fixes a problem where animation would get all laggy and weird if the game had been left open for a few days, and would get progressively worse the longer you left it open.

Switching to doubles here seems like a common sense fix, so I'm going to be looking around trying to do it in more places.
One of the most commonly requested features I get is to be able to disable automatic transform replication for a networked object.

You can now customize which components of a transform get replicated per networked object, or even completely disable it using the new network flags options.

Accessible from either the network options in the inspector, or via GameObject.Network.Flags. Disabling interpolation for networked objects has also been moved to these flags, with the old method being marked as obsolete.



Some properties aren't meant for average users, I've added an [Advanced] attribute you can place on properties, these are hidden unless explicitly shown.
I've added a new property RigidBody.EnhancedCcd as an advanced property. When enabled it enables CCD against other dynamic bodies, this is useful for fast moving physics bullets and rockets which would normally pass through other dynamic bodies.

Video shows it passing through with EnhancedCcd off, and then detecting the hit with EnhancedCcd on.
I added alpha cutoff to our SpriteRenderer, this discards pixels with alpha below a threshold. This is good for opaque sprites and foliage.
Text renderer supports font smoothing (this is different to filter mode, filter controls how it's rendered in the world, font smooth controls aliasing on the actual font rendering)
Gizmos can draw text with text rendering scope so you have more control over how the text rendering looks. 
1 px aliased outline effect now looks how you'd expect, the normal way of drawing outlines doesn't support this well. 
We did another optimization pass on the animation system and the player animgraph.

The most notable changes are:
  • Parallel bone merge
    • Clothes are now merged for multiple skeletons in parallel
    • This drastically improves the performance for clothed characters
  • Decode cache
    • We now cache some expensive animation operations between frames
    • In our testing this showed improvements specifically on older/slower hardware.
  • Animgraph optimisations
    • The system fully computes many operations even when their input doesn't change, or is 0+0
    • Logic was added around the player graph to fully bypass these when we know it's possible
    • Theoretical performance gain of 20% for characters who are standing still (& are default height)
      • Measured by animating 1,728 (!) naked characters: 35 → 28ms on an AMD 5800X CPU
      • In practice, our internal benchmarks show a 10% improvement on average

Overall, you can expect up to 50% faster animation for fully-clothed characters, and smaller gains when naked.

We now also have proper benchmark scenes for animations, so performance should only get better from here.
As we add more features and options our context menus get fuller and fuller, I added a way to quickly search these like you see in other game engines.
We changed how we measure crash metrics again, this should be the most reliable since we're tracking when we open the game and calling our own API when we crash.

It's still pretty dog shit, but we know it's accurately dog shit.
The Pivot Picker was a super handy feature inside hammer but it was kind of hidden away unless you knew what to press, It lets you quickly set the pivot based on your mouse position.  I've added it to scene mapping and made it easier to access.
We added the Fast Texture Tool to scene mapping but it was pretty basic, So I went in and added a lot of features that mappers will use as well as cleaned up the UI. 
Features included are.
  • Support Tiling in the fast texture tool.
  • Shortcuts.
  • Escaping out resets to orignal uv.
  • Unwrap Square and Comform.
  • World Mapping Scale.
  • Apply active material when entering fast texturing.
  • Snapping Toggle.
  • Reset UV.
  • Focus UV.
I've optimized the way we store and query leaderboards on the backend. This means they're now way, way faster to query.. and the query results should be instantaneous. This gives me more confidence that our backend will scale up to meet any unexpected demands on release.
26.01.07
26.01.07
7 January 2026
🎁 Added
🧼 Improved
🪛 Fixed
  • CrashReporter still reports even if Sentry fails
  • Mapping: Bevel tool steps match closer to Hammer, added smooth normals
  • Scope last selected SceneViewportWidget to SceneViewWidget
  • Video recording: pass the muxer options
  • UI/Panel Eyedropper tool works with recent changes
  • Wheel joint steering axis
  • Fallback to shortcut without modifier if the shortcut doesn't exist with modifier (allows things like tool switching while modifier is down) (#3653)
  • Sound previews start at playhead position
  • Editor camera sticking in place at very low speeds
  • Sprite editor origin
  • Opaque & non-opaque sprite sorting
  • Unduck headroom check failing
  • Don't discard normal in line compute shader when there's 2 points - fixes not being able to rotate points of line when there's only 2 objects
  • Physics aggregate data causing crashes
  • Only draw meshes in highest lod for Graphics.DrawModel etc.
  • Mapping move mode gizmos initial state
  • Actiongraph editor regressions
  • ByteStream memory leaks
  • Editor shortcuts
  • LargeNetworkFiles requesting non-existant files would crash the server
  • Crashing connections by sending invalid data or JSON
  • WorldInput state being stomped
  • Gizmo selection crash when TypeLibrary lacks a component type
  • Transition background-image-tint
  • Editor command line argument parsing
  • SceneLineObject loading Materials & ComputeShaders on non main thread causing a crash
  • "Apply to Scene" shortcut
  • ALT input not working in the editor
  • CodeGen Preprocessor Defines Fix
  • Compiler: get rid of "library" assembly prefix when publishing
🚯 Removed
  • Obsolete vertex attribute array
  • Obsolete WorldInput class (Use the component)
trophy 1515
Apr 2021 121 posts
Update 26.01.07 : news/update-26-01-07
trophy 135
Oct 2021 3 posts
let's gooo my ass refreshing the page for this for a hot minute
trophy 1320
Jan 2024 39 posts
Best christmas gift I could ever get!
trophy 2020
Apr 2021 68 posts
First update of the new year 🍻
trophy 830
Apr 2021 20 posts
That new blog post smell!
trophy 1385
Feb 2024 37 posts
"It's still pretty dog shit, but we know it's accurately dog shit."

awesome
trophy 1635
Sep 2021 138 posts
people
Log in to reply
You can't reply if you're not logged in. That would be crazy.