userJake_Richcancel

5,385 Commits over 1,522 Days - 0.15cph!

2 Years Ago
Added warmup collection scene "WarmupScenes"
2 Years Ago
Remove `EntityToScene` component from the warmup scene, instead keep the `EntityToScene` components in a new config scene and output to separate warmup scenes Add tool to bulk update all warmup scenes with latest version of each prefab - recreate the output scene instead of loading it when running to cut export times in half
2 Years Ago
Slight refactor & comments added
2 Years Ago
Merge from main -> scene_warmup
2 Years Ago
S2P everything
2 Years Ago
Fix arctic research base not having S2P label
2 Years Ago
Add logging
2 Years Ago
Rename HLOD setting
2 Years Ago
Simplify system to always output both legacy prefab + new scene - ensures it always updates the monument regardless of what system is running
2 Years Ago
Merge from main -> monument_scenes
2 Years Ago
Merge from main -> hot_reload_unity
2 Years Ago
Merge from main -> audio_import_music_clips
2 Years Ago
Fix ping estimation tooltip not working on browser
2 Years Ago
Enable ping estimation button by default (with convar) but keep ping estimation disabled by default
2 Years Ago
Rebuild server browser when ping estimation is turned on / off
2 Years Ago
Merge from main -> ping_estimation_fallback
2 Years Ago
Add `runtime_profiling_persist` convar - by default runtime_profiling will turn off after restart - enable to save the convar across restarts
2 Years Ago
Add `browser_ping_estimate_button` to control if the "Estimate Ping" toggle button is shown on the browser (default false)
2 Years Ago
Show cached ping for servers that have ping estimation off but apply a penalty - 300 ping penalty for sorting (still shows ping in browser even if it's faked) - ping shows yellow in browser instead of white
2 Years Ago
Add "HotReload" editor class that allows you to define temporary runtime fields without recompiling - Backed by a Dictionary<string,object>, only intended for use inside editor so it's ok if it's slow
2 Years Ago
Add hot reload package
2 Years Ago
Fix analytics & runtime profiling giving pooling warnings Discard analytics events right away when failing to upload - prevents it from causing a bunch of GCs when strong events that won't be uploaded
2 Years Ago
merge from fix_ping_estimation_dispose -> main
2 Years Ago
Fix ping estimation throwing an exception when reading the ping value after the ping was disposed
2 Years Ago
Update burst from 1.8.15 -> 1.8.16 to fix crashes during builds
2 Years Ago
merge from runtime_profling_presets -> main
2 Years Ago
Fix runtime profiling not turning off performance tracking when profiling is off New convar to set profiling level preset to the most common settings 0 = off 1 = basic stats (frametime, total entities spawned/killed, lag spikes) 2 = all tracking Can enable/disable profiling modules with convars after `runtime_profiling` is enabled Add comments
2 Years Ago
merge from runtime_profiling_double_physics -> main
2 Years Ago
Fix physics stats being doubled on every frame FixedUpdate runs
2 Years Ago
merge from fix_runtime_profiling_update -> main
2 Years Ago
Fix update, late update, physics & fixed update counters not being reset on the server
2 Years Ago
merge from main -> monument_scenes
2 Years Ago
Reconvert prefabs excluding RendererLOD
2 Years Ago
Cherrypick moss prefabs
2 Years Ago
Skip RendererLOD for now
2 Years Ago
Fix RendererLOD not having it's settings copied over by BiomeVisuals2
2 Years Ago
Merge from main -> biome_visuals_2
2 Years Ago
Merge from fix_barricade_subway_entrance -> main
2 Years Ago
Fixed "not in terrain" error phrase accidently defaulting to "Can't Place On Monument" - only affected phrases when generated, didn't affect the ingame messages (yet) Move a few more error phrases to the ConstructionErrors class
2 Years Ago
Fix subway entrance prefabs not having `PreventBuildingMonumentTag` as they aren't apart of the S2P system that all other monuments are - should fix them not being placeable outside of subway entrances
2 Years Ago
Merge from main -> fix_barricade_subway_entrance
2 Years Ago
merge from editor_count_components -> main
2 Years Ago
Added right click menu option `Stats/Component Count` - print the number of each type of component of the selected GameObject - if multiple objects are selected, prints the amount per object
2 Years Ago
merge from simulate_compile_errors -> main
2 Years Ago
Added `Switch/Test Compile Errors` menu option - will run parallel dotnet build in background in CLIENT and SERVER mode even if you are in CLIENT + SERVER - will output whether the build succeeded or failed (and include the errors) - only runs on windows atm
2 Years Ago
Merge from runtime_profiling_update_markers -> main
2 Years Ago
Simplify StartOfFrameHook as the first of FixedUpdate() or Update() Rename "CPU" in perf 6 -> "SCRIPTS" Estimate time taken to measure Physics.Update() - time taken between `FixedUpdate()` and `yield WaitForFixedUpdate` - include physics update time in server runtime profiler - add to perf 8 alongside FixedUpdate ms
2 Years Ago
Merge from runtime_profiling_update_markers -> main
2 Years Ago
Add script execution time for Update(), LateUpdate() and FixedUpdate()
2 Years Ago
merge from runtime_profiling_entity_csv -> main