reporust_rebootcancel

112,428 Commits over 3,928 Days - 1.19cph!

6 Months Ago
Merge from main
6 Months Ago
Remove hotreload plugin
6 Months Ago
Fixing compile errors, update manifest, fix protobuf definitions, and updating FuelSystem usage to new IFuelSystem interface
6 Months Ago
Optim: reimplementing List.Compare to use an inplace algorithm Caused by my upcoming changes to Free<HashSet<T>> requiring IPooled(I could've worked around it, but it was better to optimize it). Although I didn't benchmark, this in theory is a straight win - 3 less loops, no need for extra pools, and also fixes a harmless-but-perf bug(remained set had more elements than expected). Tests: Build for Client target. I also need to do runtime validation with a 3player multiplayer session - I ran out of time, will done once I'm back home.
6 Months Ago
WIP proof of concept for automating the entire process after pasting a list of workshop URLs.
6 Months Ago
underwater_divesites scene playable in editor
6 Months Ago
exported wolf run turnleft 150 to run test anim
6 Months Ago
merge from BurstClothFixes
6 Months Ago
Fixed burst cloth controller LODing not being marked as dynamic in some prefabs
6 Months Ago
Set-up corpse prefab and ragdoll prefab for croc. addad hitboxes and various scripts to croc prefab.
6 Months Ago
small ocean wreck buoy initial prefab setup LODs
6 Months Ago
fixed CNY_Spear and SkinningKnife BurstCloth setups - proper gravity values - reduced damping to reasonable values
6 Months Ago
divesite latest
6 Months Ago
Fixed ConversationManager Update NRE
6 Months Ago
merge from main
6 Months Ago
Merge Cargoship Log Spam Fix -> Main
6 Months Ago
Wrap a bunch of loose logs in HarborCrane and CargoShip with editor checks. This will prevent log spam
6 Months Ago
Client compile fix, code cleanup
6 Months Ago
Only get item schemas once to speed multiple item processing up, and do it during scene bootstrap.
6 Months Ago
Initial support for parsing a list of pasted workshop URLS and finding the matching items
6 Months Ago
Prefab tweaks
6 Months Ago
Disabled saving on NPCVendingMachine_TravellingVendor, may fix entity leak
6 Months Ago
Update: Adding Pool.FreeUnmanaged overload for MemoryStream Since Free got changed to accept IPooled only, it allows us to delete a runtime check in the editor env. Tests: build only in editor, all targets
6 Months Ago
Wire deployment cancel condition
6 Months Ago
Feedback: Replacing bikeshedded emptyArray with Array.Empty<T> Tests: trivial change, so only built Client+Server
6 Months Ago
LODs prefab update
6 Months Ago
merge from radtown_redux
6 Months Ago
merge from main
6 Months Ago
Switch from pinging servers via their IPs to pinging the entire server list via 4 queries
6 Months Ago
merge from mountable_rotation_fix
6 Months Ago
merge from fix_convar_defaults_server
6 Months Ago
merge from optimize_prewarm_doors
6 Months Ago
merge from triggerbase_fix
6 Months Ago
Converted the isGestureViewmodel field on viewmodel into a new viewmodel type variable, also has a shield type Fixes bullet casings ejecting from the players camera while a shield is equipped as well as some clothing issues
6 Months Ago
Temp model Added a new shield hands layer to the 3p animator that only masks the left arm, just has an idle for now
6 Months Ago
Hold RMB to block with the shield (only visible in first person right now) Cannot attack while blocking
6 Months Ago
Hide the left arm of viewmodels when a shield is active (rotated off screen) Hide the viewmodel shield while reloading weapons
6 Months Ago
Let bike driver wield items
6 Months Ago
Backups/unsaved
6 Months Ago
Updated third and first person animations for rock paper scissors gesture.
6 Months Ago
▆▅█▅▌ ▋▊▅▅▉▌▉█▍▊▊▊▉ -> ▇▄█▄
6 Months Ago
▋▌▋▍▇▌▅▊▄ ▆▅▋▋█▍▄ ▆▍▆▊ ▆▌▉█▅▄▊_▍▊▍▅▌█▍▅ ▋▇▉▊ ▆▅▍▇
6 Months Ago
▆▉▄ ▋▍▍▋▅ ▍▌█ ▄▄▌▆█▌▇▆ ▆▅▉▇▅▄▇▋▆▇ ▅▋▊ ▄▍▌ ▋▉▌ █▋▇▊▋▉▅▅▇▄▊ ▄▌▋▄ ▌▇▊ ▅▍▋▉▆ █▋▌▄▌ (▍▅▄▉▌▍▌▉▍█ ▋▌▄▌ ▍▋▊▆ ▆ ▄▉▅ ▊▅▉▉▅▍▉▍ ▍▍█▇). ▅▆▍▄▅, ▍▌█▍▌▌▇▍▌, ▉▉▋█▉, ▄▆▌▉▍▍▆, ▌▍▄▍▉▌▇▊▋, ▋▋▊▅▇, ▆▄▅▋▆.
6 Months Ago
Rock paper scissors gesture anim progress + backups
6 Months Ago
Wire ground watch, make sure to cut the trap wire when the entity it is attached to is destroyed
6 Months Ago
Made a simple shield viewmodel, seems to just work as expected as the shield entity is getting the correct OnDeploy/OnHolster client events
6 Months Ago
Added a shields inventory loadout for testing Can now use M92 with shields Can no longer ADS while a shield is equipped
6 Months Ago
First pass jungle wall texture for testing brick sizes. Doubled wall thickness in kit. Initial blockout of vertical slice jungle wall segment.
6 Months Ago
Shifting some lighting things around into culling volumes. Both because paper thin walls, but also performance.
6 Months Ago
Update: Constraining Pool.Free - Step one * Primary Pool.Free overload now only accepts IPooled types * Secondary overloads added to work with collections (not restricted to IPooled yet). They all call Clear() on the returned pooled container. * Pool.FreeList now just pipes to one of Pool.Free secondary overloads (proper cleanup will be done later - there's 800 occurances of FreeList usage) * Added Pool.FreeUnmanaged as an escape hatch for types that are in the pool but don't implement IPooled interface. Motivation: If we want to avoid leaking memory and reduce potential of "improperly-recycled" pooled objects, so we need a more controlling API for Pool that allows users to avoid misusing it and calling the wrong API by accident. We'll get there by providing a stricter API that checks for users whether it's legal to use it in a particular way. This means I have to write a bunch of boilerplate (overloads + variations) and clean up all the use cases we have(both the types that might benefit from IPooled and all the API usage points). Tests: built all targets for scripts in editor. Didn't do any runtime testing as there's only 1 safe functional change (clearing of collection on return to pool).