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.3.0
Major update

Onset 1.3.0

Onset · published 8 Oct 2020, 10:56 UTC

All newsPlayers around this dateRead on Steam

Client changes

Custom maps

The long awaited feature has finally arrived. You can now load maps/level from the Unreal Engine in Onset.

See the Developer Wiki on how to get started with Custom Maps.

https://dev.playonset.com/wiki/Custom_Maps

First public playable custom maps:

Office

Factory Map

Town Hall

Elevator

Lua package for the town hall elevator.

https://github.com/BlueMountainsIO/OnsetLuaScripts/tree/master/elevator

Watch on YouTube


Pancake House Interior

New City Skyscraper

Rescue Helicopter

Camper RV

Watch on YouTube

Hazard Suit

/Game/CharacterModels/HazardSuit/Meshes/SK_HazardSuit

Client Console

For a more convenient development you can open the game console and add your own commands. OnConsoleInput
o open the console press one of the default keys: ~, ß, ^

You can add console keys to this ini file: %LocalAppData%\Onset\Saved\Config\WindowsNoEditor\Input.ini


ConsoleKeys=´

Note that developer mode (-dev) must be enabled for the console to work.

Press the console key two times to get the large console from the top of the screen.

UnrealLua


UWorld:
GetMapName()
GetActorsByClass(Class)
GetAllActorsWithTag(Tag)USkeletalMesh:
GetBounds()
GetBoundingBox()UStaticMesh:
GetBounds()
GetBoundingBox()UClass:
LoadFromAsset(Asset)USceneComponent:
GetWorldLocation()
GetWorldRotation()
GetWorldScale3D()UActorComponent:
SetComponentTickEnabled(bEnabled)
IsComponentTickEnabled()
SetComponentTickInterval(TickInterval)
GetComponentTickInterval()AActor:
ActorAddTag(Tag)
ActorRemoveTag(Tag)
SetActorTickEnabled(bEnabled)
IsActorTickEnabled()
SetActorTickInterval(TickInterval)
GetActorTickInterval()
SetRootComponent(NewSceneRootComponent)Exposed class types:
ALight, APointLight, ASpotLight, ARectLightExposed enums:
ETraceTypeQuery, EDrawDebugTraceFVector static functions (see https://docs.unrealengine.com/en-US/API/Runtime/Core/Math/FVector/index.html)
PointsAreSame
PointsAreNear
PointPlaneDist
Dist
Distance
DistSquared
DistSquaredXY
BoxPushOut
RadiansToDegrees
DegreesToRadiansUKismetSystemLibrary static functions
LineTraceSingle
SphereTraceSingle
BoxTraceSingle
CapsuleTraceSingle
LineTraceMulti
SphereOverlapActors
BoxOverlapActors
CapsuleOverlapActors
GetDisplayNameFBox:
Min
Max
IsValid
ComputeSquaredDistanceToPoint
ShiftBy
MoveTo
GetCenter
GetCenterAndExtents
GetClosestPointTo
GetExtent
GetSize
GetVolume
Intersect
IntersectXY
Overlap
IsVectorInside
IsBoxInside
IsInsideOrOn
IsVectorInsideXY
IsBoxInsideXY
BuildAABBFSphere:
Center
W
Equals
Intersects
GetVolume
IsSphereInside
IsVectorInsideFBoxSphereBounds:
Origin
BoxExtent
SphereRadius
ComputeSquaredDistanceFromBoxToPoint
SpheresIntersect
BoxesIntersect
GetBox
GetBoxExtrema
GetSphere
ExpandBy

FPlane:
W
PlaneDot
Normalize
Flip

Example line trace usage:


local Start = GetPlayerActor():GetActorLocation()
local End = Start + (GetPlayerActor():GetActorForwardVector() * FVector(200.0, 200.0, 200.0))
local bResult, HitResult = UKismetSystemLibrary.LineTraceSingle(GetPlayerActo r(), Start, End, ETraceTypeQuery.TraceTypeQuery1, true, {}, EDrawDebugTrace.ForDuration, true, FLinearColor(1.0, 0.0, 0.0, 1.0), FLinearColor(0.0, 1.0, 0.0, 1.0), 10.0)
if bResult == true then
print(bResult, HitResult)
end

This example will trace 200 cm in front of the player. It can also be used to get a reference to any existing actor placed on the map. For example to hide existing meshes on the map.

Spawning a Blueprint:

GetWorld():SpawnActor(UClass.LoadFromAsset("/Game/Geometry/ModularPrison/Blueprints/BP_GuardTower"), FVector(0, 0, 0), FRotator(0, 0, 0))

Other changes

- Set max timer limit to 1024
- Fix IsVehicleSeatOccupied, GetVehicleDoorLocation seat parameter starting at 1
- Fix AddComponent for USkeletalMeshComponent
- Expose ASkeletalMeshActor and make it spawnable with SpawnActor using ASkeletalMeshActor.Class()
- Add GetInputMode()
- Reset draw color on disconnect
- Fix OnPlayerEnterVehicle event for vehicles with 2 doors
- Add OnConsoleInput event for the client console.
- Make GetObjectBoundingBox behave like GetVehicleBoundingBox
- LoadPak now returns true if the pak was already loaded.
- Make playerid optional (default: -1) in GetPlayerActor
- Show number of pending files to download when connecting to a server
- Don't put package is failed state if a script is empty
- AddEvent, AddRemoteEvent, AddCommand now returns success status

Server changes

- SetObjectMoveTo is now much more accurate.
- Add dimension events: OnPlayerChangeDimension, OnVehicleChangeDimension, OnText3DChangeDimension, OnPickupChangeDimension, OnObjectChangeDimension, OnNPCChangeDimension, OnDoorChangeDimension.
- Add created events: OnObjectCreated, OnVehicleCreated, OnText3DCreated, OnPickupCreated, OnNPCCreated, OnDoorCreated
- Fix timeout for players when downloading files.
- Functions AddEvent, AddRemoteEvent, AddCommand now returns success status.
- Add OnObjectStopMoving event.
- Fix a rare event crash.

Update your WorldDoors.lua from the default package.
The elevator package is available in the package folder of the 1.3.0 server. Add it to have elevators in your town hall

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.