3.23.7.0 Update Notes (+patches)

Scope range indicators, animated hitmarkers, multi-threaded asset loading, and more!

Changelog

Added

  • New animated hitmarkers and option to use non-animated style.
  • Accurate range markers on vanilla scopes.
  • Craftable Progress Pride flag jersey and pin available during Pride Month event.
  • Transparency option for crosshair, hitmarker, and critical hitmarker colors.
  • Accepted Artist, Hooligan, and Lime Tracksuit bundles into Stockpile.
  • Multi-threaded asset loading with additional information on the loading screen.
  • SpotLight_Enabled option for melee, tactical, and headlamp items.
  • Allow_Lobby_Groups server config option.

Changed

  • Windows dedicated server intercepts quit handler to save+shutdown when closed.
  • Replaced Ballistic_Drop gun property with Bullet_Gravity_Multiplier.
  • Removed Recoil_Aim gun property.
  • Searching crafting list by name can show results without any available items.
  • Redact certain hate speech regardless of profanity filter setting.
  • Stop inspect and equip audio clips when the item is dequipped.
  • Removed peripheral integrations. (e.g. long-disabled Discord integration and RGB keyboard integration)
  • Replaced 2D cosmetic icons with 3D preview icons.
  • Your own bullet impact audio is slightly audible regardless of distance to provide more hit feedback.

Fixed

  • Track kills on weapons with Shared_Skin_Lookup_ID. [Thanks NickSkunk!]
  • Phantox Timberwolf albedo and emission textures flipped. [Thanks Semidvista!]
  • Prevent resetting gun’s fire delay by clicking again. [Thanks DerEnte!]
  • Enable HUD during red flinch overlay similar to flashbangs. [Thanks Renaxon!]
  • Miscolored roll bar on colored offroaders. [Thanks Alex!]
  • Sentry gun spread/misses not properly using aim direction. [Thanks PiggySvK!]
  • Clamp terrain cut brush radius to work around an engine crash. [Thanks DanielWillett!]
  • Terrain material brush pixel average mode not working. [Thanks DanielWillett!]
  • NPC passive pose resetting when unloaded. [Thanks Toothy Deerryte!]
  • Items in nearby inventory incorrectly removed when a non-visible item is removed. [Thanks Joko!]
  • Using lobby to bypass group member limit. [Thanks Semidvista!]
  • Potential exploit to load assemblies from assets. [Thanks CyberAndrii!]
  • Sync pending visibility changes when baking navmesh. [Thanks Toothy Deerryte!]
  • Arrow tracers getting immediately destroyed. [Thanks Toothy Deerryte!]
  • Ignore asset paths less than 2 characters as a workaround for material palette assets missing closing list bracket.
  • Not applying framerate and vsync limits at startup.
  • Fail loading of animal assets missing required game objects.

Scope Distance Markers

This doesn’t make sniping easier, rather it raises the skill ceiling by giving distance estimation more use and removing scoped recoil reduction.

Before this update the markings on scopes were arbitrary whereas now they are adjusted to account for your field of view, the gun’s muzzle velocity, the level’s gravity, and your unit system preference.

Modders can update custom scopes to use these new features, for more details:

Sight Distance Marker Documentation

Asset Loading

The real meat and potatoes of this update: startup loading should now be faster for most players. On average it’s about twice as fast.

Previously all of the asset loading was done on the main thread. Now the vanilla content and each installed mod is assigned two threads: one to search for files, and the other to read and parse them into memory (building on the asset parsing rewrite from the last update). This leaves the main thread to focus exclusively on pairing game data with the assets loaded from asset bundles.

The majority of the main thread time is spent loading from asset bundles now. This step has to be done on the main thread, and unfortunately synchronous vs asynchronous loading doesn’t make a difference here. In the future deferring some of this loading to as-needed async loading will cut down on startup time at the cost of slight delays, for example async loading a hat only when it’s equipped.

Closing Windows Server

Kind of ridiculous to proclaim a minor change with fanfare and an image in the update notes, but as a PSA: clicking the Close button of the Windows dedicated server should no longer be a tragic mistake.

Previously this immediately terminated the server process without giving the game a chance to save, so misclicking the Close button could result in lost progress. Now the game intercepts this event and tries to save+shutdown while sleeping the Windows routine. Using the regular shutdown command is still recommended however because by default Windows only allows up to 5 seconds before the server will be closed regardless.

Patch #1

  • Fixed unable to select repair item blueprint. [Thanks Rattle189 and Renaxon!]
  • Fixed per-server manual workshop folder not working due to extra ‘/’ in path. [Thanks baranmod!]
  • Fixed holographic reticule not visible with transparent critical hitmarker.
  • Fixed some hardcoded audio references not working.
  • Fixed not loading hitmarker style preference (oops).

Patch #2

  • Added Blueprint_#_Searchable (bool) option for debug items to hide from search results.
  • Server reorganizes assets after loading to keep ID override order consistent with client.
  • Fixed incorrectly matching closest master bundle in file hierarchy when folders had same prefix.
  • Parse unrecognized escape sequence as '' and log message about ‘/’ for file paths.

With the addition of multi-threading asset loading the server no longer loaded assets in a consistent order, so the ID override order used by clients wasn’t matching the server anymore. To fix this the server now uses the same asset remapping system as the client. Note however that content manually installed on the server is inserted before all other assets to reduce conflicts because it is otherwise not loaded on the client.

File paths specified in modded assets using single backslashes broke in the update because there was a fix to parse escaped newlines in unquoted strings. As a workaround unrecognized escape sequences are now parsed as-before and logged. Converting them to forward slashes is recommended because paths starting with lowercase T or lowercase N are being parsed as tab and newline respectively.


Originally posted on Steam News: Unturned - 3.23.7.0 Update Notes - Steam News

4 Likes

Looks great!

The .2 patch released earlier today. Notably, this fixes an issue with backslashes not being parsed as expected by some modders. Mods that were using backslashes for file paths should work now.

It’s recommended to convert these to forward slashes instead, since backslashes are used for escape sequences (e.g., \n for newline).

1 Like

This topic was automatically closed 25 days after the last reply. New replies are no longer allowed.