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
OnsetNewsOnset 1.4.3
In-game event

Onset 1.4.3

Onset · published 11 Feb 2021, 18:14 UTC

All newsPlayers around this dateRead on Steam

Onset 1.4.3 (Protocol Compatibility 4)

Firetruck

Watch on YouTube

Keybindings for the ladder:
E, Q - Extend ladder
Numpad 4, 6 - Rotate ladder
Numpad 2, 8 - Move ladder up and down

The ladder and water mesh is a skeletal mesh with an attachment point named "water". You can use that to spawn and attach water particles through Lua.

Lua function SetWebFocus for WebUIs

This is a great addition to WebUIs. Until now you couldn't focus an input on purpose. For example for a custom chat system.

function OnKeyPress(key)
if key == "Space Bar" then
if IsCtrlPressed() then
AddPlayerChat("Focus mapeditor")
SetWebFocus(EditorGui)
ExecuteWebJS(EditorGui, "FocusInput();")
end
end
AddEvent("OnKeyPress", OnKeyPress)

After calling SetWebFocus you must also focus the HTML (input) element through Javascript.

Other changes

  • Add button to the main menu to open the server content cache folder.
  • Add SetHeightFogDensity, GetHeightFogDensity
  • Adjust front light intensity of some cars to be more consistent.
  • Improve vehicle torque, suspension and transmission settings for vehicle IDs 7, 8, 9, 13-16, 17, 18, 24, 42, 47, 48, 49
  • Add new engine sounds for Apocalypse_02 (ID 56)
  • Remove pumpkins from the cemetery.
  • Improvements to game asset size again.
  • Object IDs 728, 729, 732, 735 have been removed. (Replaced with a cube) You can use other existing chairs instead.
  • Add function UActorComponent:ComponentHasTag(TagName), ComponentAddTag(TagName), ComponentRemoveTag(TagName)
  • Add function UMaterialInstanceDynamic:GetFloatParameter(ParamNa me), GetColorParameter(ParamName), GetTextureParameter(ParamName)
  • Add function UObject:GetClass(), GetClassPathName()
  • UObject.ProcessEvent custom user parameters are not optional.

Fixes

  • Fix wrongly checking Lua errors in exported functions causingparams to always return nil
  • Fix player flying away when static mesh mobility is set to movable
  • Fix a game freeze in WebUIs.
  • Fix a game freeze when a sound (CreateSound/3D) is being destroyed.
  • Fix many map glitches.
  • Fix writing server data if existing file is read only.
  • Fix MuscleCar (ID 40) driver animation.
  • Fix some textures streaming incorrectly.
  • Should fix some landscape LOD artifacts.
  • Fix vehicle light sync in some circumstances

Server changes

Sandbox option

Add a new option named "sandbox" to the server_config.json. (Disabled by default)
Turning this on will enforce the same script security boundaries as on the client. For example no loading of compiled Lua scripts or usage of possible dangerous functions.

  • Fix BroadcastRemoteEvent parsing parameters incorrectly.
  • Fix crash when checking vehicle passengers.
  • Fix GetStreamedPlayersForPlayer not returning players that are inside a vehicle.
  • Update WorldDoors.lua in the default package.
More from Onset

Other announcements

All news
In-game event9 Mar 2022Onset 1.5.5Onset 1.5.5 (Protocol Compatibility 5) 3D sound for 3D Web UIs There is a new parameter for the function CreateWebUI3D and CreateRemoteWebUI3D to set the sound falloff distance. New Lua functions SetWebVolume(web, volume) SetWebPitch(web, pitch) New Lua events The following events allow you to block certain input when you return false . OnActionKey(EventType, ActionName, KeyName) OnAxisKey(Even…In-game event5 Feb 2022Onset 1.5.4Onset 1.5.4 (Protocol Compatibility 5) This update removes the old server query mechanism & master server system. It is being replaced with the solution that the Steamworks library offers. Server operators must update their servers to be shown in the game main menu. Game · You can view a list of servers (outside of Onset) in Steam. Go to View -> Servers -> Change Filter to Onset. · The main men…Game update7 Jan 2022Onset 1.5.3 Patch 1Update WebUI library. · Update object images. · Update copyright year.