reporust_rebootcancel

108,562 Commits over 3,867 Days - 1.17cph!

11 Years Ago
Don't re-load the HUD when running the HUD level through GameSetup Added player preview to the inventory menu Added CameraEx (modifys the ambient light rendering for camera) Added SingletonComponent MonoBehaviour base
11 Years Ago
Use spawn handler spawn points in levels that allow it
11 Years Ago
Added item module, wearable Added red jacket Added clothes textures Wearables now get networked to other players Can add stuff to wearables section of HUD Should rebuild model on clothes swap Added debug third person mode (F3)
11 Years Ago
Switching to different protobuf library (test) Network messaging evolving to reduce gc, increase flexibility
11 Years Ago
Fixed normal mapping Optimized fade value calculation Added blend offset parameter
11 Years Ago
Added terrain tangent equation
11 Years Ago
Fixed normal calculation
11 Years Ago
Time of Day update to 2.0.7
11 Years Ago
TerrainUV frac call is no longer needed, so let's save those instructions
11 Years Ago
Minor OCPD fix
11 Years Ago
Fixed mesh blend shader terrain texture "boiling" if far away from the coordinate origin Major texture mapping quality improvements
11 Years Ago
-last of the prone animations;
11 Years Ago
Moved all benchmarking to TerrainGenerator Added BENCHMARK ifdefs to TerrainGenerator Multiple tweaks and fixes for TerrainBlend Added TerrainBlend setup to TerrainGenerator to reuse the splatmap and heightmap arrays Added SpawnHandler setup to TerrainGenerator to reuse the splatmap array
11 Years Ago
Mesh blend shader tweaks and fixes
11 Years Ago
Fixed splat UV calculations
11 Years Ago
Added spawnpoints (temporary) Made Sleeping player movement better Added crafting logic Added crafting UI Added player respawning after death Fixed player feet offset stupidness Fixed network group not reconfiguring when spawning into sleeper Fixed position smoothing being fucked in low fps Undone fall logic
11 Years Ago
Mesh blend shader cleanup
11 Years Ago
updated viewmodel scene with rock anim
11 Years Ago
added materials
11 Years Ago
added rock viewmodel, clips, & anim controller
11 Years Ago
Crafting basics
11 Years Ago
prone_left animations
11 Years Ago
More debug !
11 Years Ago
Oops, left in some debug, fixed
11 Years Ago
Copy EAC files over on build
11 Years Ago
EAC dlls and launcher
11 Years Ago
Compile the clients to RustClient
11 Years Ago
Fixed client error
11 Years Ago
Player state Sleep animation rules
11 Years Ago
Player animation optimizations - only animate when visible - only set position when changing position
11 Years Ago
Fixed error in Trigger hurt, when objects get removed while triggering
11 Years Ago
Made everything use the new terrain math class Parallelized the normal map generation of terrain blend Fixed that the terrain blend initialization would run twice Reordered the terrain data instance setup of the procedural terrain generation since it's slightly faster that way
11 Years Ago
Fixed loading saves in singleplayer
11 Years Ago
Class for all the thread safe terrain math I had to implement Hopefully all of this will be part of the Unity terrain system one day
11 Years Ago
Added simple Saving/Loading If a player object exists, player will spawn into it Player doesn't get removed when player leaves server Player gets destroyed when killed and no connection Moved localplayer under clientside ServerMgr now calls Init itself, instead of using Start (which can be delayed by a frame) Added server.saveinterval Added server.identity
11 Years Ago
Server save prefab
11 Years Ago
Server saving
11 Years Ago
Split Destroy into Client/Server functions for clarity Added save list
11 Years Ago
Refactoring to decouple BaseEntity from Networking a bit more obviously
11 Years Ago
Log server exceptions properly
11 Years Ago
Damage Indicator (wip)
11 Years Ago
Health UI More specific layers More CollisionSettings.* Fixed Axe viewmodel not showing up
11 Years Ago
Player ground mask
11 Years Ago
Metabolism now syncs properly Added vitals on hud (placeholder) Added TriggerBase, TriggerHurt (testing) Serverside player colliders
11 Years Ago
moved the bear .fbx files to rust reboot
11 Years Ago
-new bolt rifle / tweaked some animations for the hatchet / stone hatchet
11 Years Ago
Metabolism take damage
11 Years Ago
Cleaning up
11 Years Ago
Fix compile error
11 Years Ago
Added new layers Added GameTrace - which is like the normal physics ray trace, but also asks hit objects to test themselves (this allows us to have sub-collision schemes, like hitboxes) Removed Attack class HitInfo now stores Transform bones Added Blood effect Added player collision Added Hit Sphere collision scheme (testing feasibility) Added collision_setup prefab - this allows us to have a central place to set up collision masks in game instead of code Added MathLibrary - which might be overkill because I'm only using one function, although if it means we don't have to write our own.. all the better.