reporust_rebootcancel

130,554 Commits over 4,232 Days - 1.29cph!

11 Days Ago
missing TankTop file
11 Days Ago
█▇▅▆▇▄▍ ▌▉▇▌▌▇▋▉ ▋▇▉▋ ▊█▅▋▄▍ ▌▆▌▆ ▍▋▍▋▇▉██▋▆▋
11 Days Ago
merge from main
11 Days Ago
removing more unused prefab setup
11 Days Ago
merge from gui_cleanup
11 Days Ago
removing more dead code
11 Days Ago
got the admin panel working for sculptures again
11 Days Ago
▆▇▅▄▋▇█ ▌▇▊█ ▍█▉▉█▅ ▇█ /▋▅▋▅/▉▍█▊▊█▌ ▄▇ ▋▄▄▄▅ ▍▉ ▄▇▆▅ █ ▋▋█▍▄▄▉▍ ▅█▇█▆▊▅▇▋▌▇
11 Days Ago
Naval scientist variation art
11 Days Ago
removed a bunch of disabled stuff from the dialogue prefab
11 Days Ago
Possibly fixed MeshCull objects not being affected by occlusion culling
11 Days Ago
routed saving properly
11 Days Ago
Commands tab for useful and common commands
11 Days Ago
Include legacy shelter in spawn_all_deployables command, was excluded previously to prevent an error
11 Days Ago
Tank Top repose male/female
11 Days Ago
Collared Shirt repose male/female
11 Days Ago
removed some leftover signui stuff, float values used for sizing as it now supports that
11 Days Ago
powerplant update
11 Days Ago
merge from powerplant_dropzone
11 Days Ago
airfield, excavator, launch site, military tunnels, nuclear missile silo, powerplant, trainyard and water treatment plant now playable from the scene - few misc errors need cleaning up, terrain components largely out of date across scenes - continue to use monument island for procgen like experience
11 Days Ago
Loadouts tab styling
11 Days Ago
drop zone moved, prevents hackable dropping on lighting
11 Days Ago
merge from fillwater_improvements
12 Days Ago
merge from helicopter_flare_balance_pass
12 Days Ago
merge from harbor_swingbridge_parent_fix
12 Days Ago
merge from m15_3p_emmisive_fix
12 Days Ago
merge from tactical_gloves_skinnable - tac gloves now skinnable
12 Days Ago
merge from rivals
12 Days Ago
Culling.env is no longer admin only Added culling.skinnedRenderers, controls the player/animals culling system Both culling.env and culling.skinnedRenderers require culling.toggle to be active, turning this convar off will turn both related convars off
12 Days Ago
Merge from food_qol
12 Days Ago
Fixed items held in sub inventories (backpcks, fishing rods) not calculating biome temperature correctly
12 Days Ago
Merge from main
12 Days Ago
Don't allow the deep sea terrain config to load if the player is in the tutorial
12 Days Ago
Merge from parent
12 Days Ago
Cherry pick 136869 to expose bake heightmap shortcut, useful outside of hackweeks
12 Days Ago
Fixed missing ghost ship map marker
12 Days Ago
Merge from fog_multithread_fix
12 Days Ago
Move test scene
12 Days Ago
12 Days Ago
Compile fix
12 Days Ago
FIxed deep sea fog of war being filed with mismatching part ids on the server, preventing it form loading on the client after reconnecting
12 Days Ago
Expose shortcut Terrain/Bake Heightmap in shortcuts window
12 Days Ago
12 Days Ago
Splatting
12 Days Ago
Saving/loading
12 Days Ago
Setup a paint save testing scene to finally get to the bottom of the multithread fog of war issues
12 Days Ago
Fix "ShouldBeRunning()" getting inverted during refactor
12 Days Ago
Refactor refill code from PrefabPoolCollection into it's own PrefabPoolFiller class
12 Days Ago
Strip PropRenderer from spawned objects Can't use PrefabAttribute due to assembly limitations so came up with a simpler approach Probably not worth it, a memory sample from a large base showed only 0.7mb of these components (across 1885 of them though) Would still need some bespoke handling for HideDuringRender usages, likely via a new component
12 Days Ago
Add convars to control pool refilling - refill_max_concurrency (default max 5 jobs queued) - refill_mode (0 = off, 1 = main thread, 2 = InstantiateAsync) - refill_immutable_optimization (assumes source prefab isn't being modified) - refill_max_per_job (max number of prefabs submitted per job (default 30) Better detection when no work is being done and avoiding burning the budget Target refilling each pool to 50% to avoid constantly deleting extra prefabs if the pool is always full - hardcoded for now Simplify main thread refilling, don't worry about overshooting budget since it can be set small and we want to move to async which doesn't risk overshooting