reporust_rebootcancel

127,981 Commits over 4,109 Days - 1.30cph!

3 Months Ago
merge from selectionhistory_improvements
3 Months Ago
Fixed bitmask read using too small a bit count
3 Months Ago
Code cleanup
3 Months Ago
Remove client -> server syncvars
3 Months Ago
main -> syncvars
3 Months Ago
██▋▇▄ ▄▋▉▌▍▆▄▍ ▉▋▄ ▋▊▊▍ ▍▋▌▅▅▌▉ ▅▌▌▋▆▍ ▇▆█▋ ▄▉ ▄▄▋▇▇▍ ▄▊▋█▆▉▍▊█▍
3 Months Ago
Optim: PrefabPreProcess - replace GetComponent with TryGetComponent Those are cheaper since they do less allocations and text formatting. Saves ~35s (but new flow is still slower). Tests: ran procgen with early out
3 Months Ago
Update: Merge prefab loading and preprocessing to run concurrently Surprisingly leads to worse timings than them being separate (120s prev CL vs 144s new). Might be overhead from doing a single prefab per frame Tests: ran procgen with early out
3 Months Ago
Update: move prefab processing to WorldSetup Tests: ran procgen with early out
3 Months Ago
Update: Prefab<T> gains a convenience (Prefab, T) constructor Tests: compiles
3 Months Ago
merge from jungle_dlc/jungle_storage_skin_fix/jungle_barrel_storage_corpse_gibs/
3 Months Ago
Re applied main changes on wicker and bamboo barrel corpses
3 Months Ago
CanSeeWallpaperSocket is now using alternative LOS checks Fixes some issues when trying to pickup and reskin wallpapers
3 Months Ago
Use terrain normal map instead of deriving from the height map for better quality on steep edges, more accurate grass distance based cell count calculation
3 Months Ago
Recompute cells when texture mipmap limit is changed, fix underwater foliage by calculating min max heights in cells, and improve debug view.
3 Months Ago
█▋ ▋█▋: `▍█▍▍█▆▄.▅▉▊▊▄_▇▍▄▍▄▄▅` ▍▄▌▍▉▇▆, ▅▋▌▅█▊ ▇▊▍█▇▆▋ ▌▋▌▇▆▆▍ ▉▍ ▋▇▇▊▊▉▊.▅██▊▆, ▅▇▆▇▆ ▄▋▋▍▊▊▌▆ ▆▅▅█▋ ▇▇▊▆▍█▌▋. ▄▋▍▌▍▌ ▉█▋ ▇▉▄▄▅▅▌ ▍▄▋██▇ ▇█▊▋▅▆▊▌▇.
3 Months Ago
merge from main
3 Months Ago
merge from networkcache_ownerid_fix
3 Months Ago
By default, entities won't use the network cache when networking their owner info - Fixes drone owners not being able to set their ID - Fixes signs being inaccessible to their owner when locked
3 Months Ago
flaregun blockout
3 Months Ago
Rotation easing + fixes
3 Months Ago
revert accidental change
3 Months Ago
Update: Merging asset loading flows together - still editor only + debug code to early out - still slow (there's a number of issues left to resolve) Discovered that mixing Sync + Async loads causes an integration queue flush(big stall for us). This'll be a tricky problem to address, since SoundDefinition (and I presume others) load assets as part of OnValidate Tests: procgen in editor
3 Months Ago
- randomize weather noise offsets for variety - respect render scale/dlss scaling - sun and ambient improvements
3 Months Ago
`debug.spawn_all_deployables` command - spawns one of every deployable in a grid (sometimes useful for testing)
3 Months Ago
RustCraft
3 Months Ago
Additional LOS check pos for wallpaper constructions, fixes all the various line of sight blocked issues when placing down wallpaper
3 Months Ago
Update: hooking up gameobject spawning to async load logic - Contains a bunch of testing code used for profiling, will clean up in next update Needs a bit of rework to ensure both the orignal flow and new flow can work together. Tests: ran procgen
3 Months Ago
Bugfix: fix out of bounds access during prefab shuffling Tests: ran procgen, no exceptions
3 Months Ago
Added support for all shadow cascades and added a fixed step size to reduce distant artifacts
3 Months Ago
Phrases
3 Months Ago
Added some moving 3D perlin-worley noise to break up the light beams slightly
3 Months Ago
proj matrix fixup, fix weather map noise tiling, more cleanup
3 Months Ago
merge from hackweek_fps_logging
3 Months Ago
Merge from hackweek_fps_logging
3 Months Ago
Can now log client FPS to a file using fps.startlogging. Use fps.stoplogging to stop the logging, it will logged into a file.
3 Months Ago
Inventory redesign
3 Months Ago
Update: implement missing logic for both GatherAssets and Process - GatherAssets now respects all relevant settings and sorts paths - implemented Process that works on a batch of objects Tests: only GatherAssets has been checked (confirmed reduction of assets due to config use)
3 Months Ago
Update: exposing prefab preprocesing from GameManager Tests: none, simple change
3 Months Ago
Update: List and Array Shuffle range overloads Tests: none, trivial code
3 Months Ago
Perm Store design
3 Months Ago
Weekly skins tab new design
3 Months Ago
Added better light scattering for the volumetric god rays
3 Months Ago
Boleadoras - Initial engine setup as a modified combat knife, with working ragdoll hit effect on players and placeholder models for viewmodel, worldmodel, entity and projectile (and it spins properly!). Updated manifest
3 Months Ago
material changes to dog kennel
3 Months Ago
Optim: replace prefab search logic with editor manifest lookups - commented out a bunch of code for quicker iteration, wil lrevert later - doesn't account for monument duplication/probability Significantly faster because we don't load any assets in the process - goes from 30s+ down to 15ms Test: tried to procgen default editor map
3 Months Ago
Update: Sort editor manifest by path Allows to do faster lookups Tests: ran in the editor
3 Months Ago
turned emissive off on miner hat material so its not always on on world model
3 Months Ago
Re-applied Planner.Server changes