userJake_Richcancel
reporust_rebootcancel

5,154 Commits over 1,461 Days - 0.15cph!

1 Hour Ago
▇ ▄▅█▌▋▄▅ ▆▆▆▊▍▉▉▌ ▍▄▅▊▍ ▊▊▄ ▉▇ █▇▄▇▋▋▄
1 Hour Ago
▌ ▋█▆█▌▉▊▄▍█▍▆▄ ▌▆▉█ ▄▆▌█▉ ▊█▋▊▋▋▉▇▉▊ ▌▅▆▅██▄
1 Hour Ago
▇ █▋▍▍▍▅▅ ▍▉▋▅▉ ▉▅ ▊▄▋▄▌▊▅▇▇ █▅▋▅█▋▍ ▆▆▋▋▅▆▋▆▉▌▆ ▌▊█▌ ▆▅▄▅▉▅ ▊▇▋ ▅▅█▉▌▆ ▄▋▆▉█▌▋▋
1 Hour Ago
▌ ▅▄▋▉▅▊▊ ▌▅▍▇▌▄█▍▊▅▄█▉▍▅▍▇█▍█▅▍▊▍▌▋█▅█▄▄▍▅▄▇▉▍▍▍▅▍ ▄█▋▍ ▅▉▌▄▄ █▄ ▆▆█▍▉
3 Hours Ago
Fix compile simulator not catching all errors (only catching CS errors, not MSBuild errors) Fix compile simulator leaving 10-12 dotnet processes in background for 15m because "-nodeReuse:false" wasn't passed in
3 Hours Ago
Fix compile error
5 Hours Ago
Increase bounds of the apartment building entity to the size of the apartment complex building (so it doesn't touch the scene)
5 Hours Ago
update apartment_complex_monument/prototype
Today
merge from apartment_complex_monument/prototype -> apartment_complex_monument
Today
Set apartment phones to not require power
Today
Allow `checkoutroom` to checkout other rooms (NPC rooms for example)
Today
Also set apartment room phones as "ApartmentStatic" so you the directory is filled between room <-> room
Today
Unsaved changes in large apartment
Today
Ridable horse
Today
Fix placement of phone in small apartment, add to medium & large apartment
Today
Give telephones a random number when apartments are rented (like phones usually work) Add all telephone of active rooms to the directory of the static phones outside the apartment (not every monument, only the apartment monument) - allows you to call rooms that are rented + is one way to see which rooms are currently rented
Today
Add telephone to small apartment
Today
Apartment complex scene set static phones to "apartment phones" with flag + disable scene light baking (can be stomped)
Today
Apartment .meta texture files after Unity 6
Today
Fix upkeep terminal not being in furniture root in medium apartment
Today
Fix scrap in apartment upkeep terminal not being moved when upgrading rooms
Today
Restore chat messages when renting room (until adding support in conversation system for it)
Today
Fix room upkeep not using min rent
Today
▄ ▅▉▄▆ ▆▅▌▆▋ ▆▆▉▊▋▋ ▇ ▋▌█▅▄▌▆▉
Today
▉ ▌▌▋▌▇ ▊▇ ▄▇▉█▌▅▄▄▍ ▅▌▄▄▌▋▌ █▍▌ ▉▅▆▋█▊▍ ▇▌ █▆▆▍▋▊█▌▊▌▊ ▅▅▊▅▆▇▄▄▊▅▍▇ ▌█▅▅▋▊▅▋▍▋▆▊ ▋▍▍▇▇▇▌▅▊▇ ▋▇█▅▉▄▉▌▊▊ █▍▇█▉█▊ ▅▉▄▊▇▍▄
Yesterday
merge from fix_hemp_collectable_wind -> main
Yesterday
update apartment_complex_monument/prototype
Yesterday
merge from main -> apartment_complex_monument
Yesterday
Re-enable wind on hemp collectable
Yesterday
Fix elevator radial menu not using correct buttons
Yesterday
Ridable horse
Yesterday
update apartment_complex_monument/prototype
4 Days Ago
Rename PathMeshLOD -> RailMeshLOD, less generic but much clearer what it does
4 Days Ago
Fix the AddToHeightMap at the end of GenerateRailMeshes not having a collider available due to the client deferring the generation of meshes & therefore mesh colliders - still generate meshes for colliders right away on servers - generate the lowest LOD in the rare case that a client is generating a map (and not loading a cached map) - keep PathMeshLOD components disabled until procgen finishes to ensure they don't update LODs mid-map generation and start deleting the colliders
4 Days Ago
Rename CreatePathMeshJob -> PathMeshTemplate to make it clearer
4 Days Ago
Defer the integration of the generated mesh by sending it to the load balance - it would be quick but Unity doesn't letting us assign the UV distribution float manually from C# so we have to call mesh.RecalculateUVDistributionMetrics() on main thread which takes 0.8ms
4 Days Ago
Add `printrails` command to print all the railroad meshes currently active
4 Days Ago
Add profiling markers Destroy mesh instead of assigning to MeshLOD if the railroad LOD is hidden before the mesh generation request finishes
4 Days Ago
merge from main -> optimize_train_track_meshes
5 Days Ago
Fix CommentComponent being reserialized with different line breaks due to Unity clamping yaml string length in prefabs to 80 characters - normalize every line break to \n so it can't change when saved on different platforms - this fixes RidableHorse constantly wanting to be commited
5 Days Ago
More progress - generate meshes right away when running on server (so they can be assigned to colliders) while keeping it defered on the client so we only generated meshes when in LOD range - create PathMeshLOD which is MeshLOD + request mesh generation when the lowest LOD becomes visible & destroy when no LOD is visible - fix the "job" version creating a job per mesh segment instead of batching every 5 segments together - some more fixes with the mesh generation (stuff like handling both 16bit and 32bit indicies instead of assuming every mesh is <65k verts)
5 Days Ago
Add "rentallrooms" to see performance impact of fully loaded apartment monument
5 Days Ago
merge from main -> apartment_complex_monument
6 Days Ago
Wrap PathList.CreateMesh() with a request class - preparing to generate and destroy the meshes when the rail segments are loaded by WorldGrid instead of generating all rail meshes at startup and keeping them in memory for the whole session - proxy the normal CreateMesh() method to use the "job" class internally (even though it runs on worker threads instead of the job system) - switched to the NativeArray mesh building methods instead of using MeshCache.Data for storage
6 Days Ago
merge from apartment_complex_monument/prototype -> apartment_complex_monument
6 Days Ago
Fix compile errors
6 Days Ago
Fix compile errors + the Load() method not calling the correct "SetStaticFurnitureVisible() method for client vs server mode
6 Days Ago
Disable the HLOD mesh renderer by default so it doesn't show in scene view (can re-enable the component on HLOD_apartment_complex_1.prefab if needed)
6 Days Ago
Switch basement elevator door in apartment wing to the rusty version (keeping the rest of the elevator doors looking normal)
6 Days Ago
Create rusty version of apartment elevator door