20,766 Commits over 1,522 Days - 0.57cph!
Upgrade ChangeAttribute to support any property not just for [ConVar], so it now works with [Sync], too. Move ChangeAttribute to Sandbox.Game so it can use TypeLibrary for CodeGenerator wrapped property stuff. Resolves Facepunch/sbox-issues#6386
More accurately synchronize Time.Now between clients. Fixes Facepunch/sbox-issues#6326 (at least with the repro they attached.)
Fix clearing ModelRenderer.MaterialOverride
Fixed Sync attribute / CodeGenerator wrapped properties ignoring existing modifiers (Fixes Facepunch/sbox-issues#5867)
Move rigidbody start asleep until after colliders are added - otherwise it's not going to do jack shit
Add Prop.StartAsleep, this is common enough to justify adding to prop
Expose IsValid() to ActionGraph
https://files.facepunch.com/ziks/2024-09-09/rwuGmEnsdg.png
Fixes Facepunch/sbox-issues#6376
Group object-targetting utility nodes
Support empty <style> block in .razor files
Resolves Facepunch/sbox-issues#2725
Clear texture after creating texture if no data was set, instead of refcount hack
-allowlocalhttp works for WebSurface in editor only. Also limit Http local http to editor and headless (dedicated server), players should never be able to accidentally opt in
Facepunch/sbox-issues#5774
Update compiled shaders with relative cubemap luminance
Fog Fix (#1661)
* Some lightbinner cleanup, allow it to be used directly without the complex system that scenesystem wants
* VolumetricFogRenderer has it's own lightbinner outside of lightbinner pool, does lightbinning to fetch fog lights for the fog context only, fixes fog light settings not doing anything, deprecate LAYERFLAGS_NEEDS_FOG_CONTRIBUTING_LIGHTS since we don't need special code for that anymore
* Share dynamic shadow atlas if we have more than one lightbinner per view ( for example, fog ), fix volume fog no shadows option, cleanup unused shit
* Put fog mode in it's own category and add nice icons to them
https://files.facepunch.com/sam/1b0611b1/zwd8qAJFu7.png
* These convars don't do anything or are redundant, some notes for tiled rendering in the future
* Remove deprecated VR stuff for volumetric fog on rendering pipeline, note for Alex that we can just reproject the frame for eye 2 for cheap volumetric fog rendering, any crumbs will be stripped more when I remove clipmaps
* One lightbinner per volumetric fog rather than creating it every frame
* Start removing fog clipmap rendering, there are better ways to do this and it's massive
* Disable clipmaps on managed code, clean up shader code
* Remove VR-specific frustum stuff from volumetric fog
* Get rid of redundant data
* Separate two passes cleanly, remove accumulation TAA, we'll do a proper big pants one
* TAA stub
* Fancy volumetric fog taa, move what was on integration step to previous pass, so this has pretty much the same cost and memory footprint as previously but much higher quality
* Proper fog TAA with ping-ponging accumulation textures
* Iterate fog denoising
* Do soft TAA jitter and encode non-final texture to a softer color space so that TAA bbox is also softer
* Final cleanup, fix fog density, fix obsolete error
Handle WebSurface.Url null, remove duplicate private url check
Fixes Facepunch/sbox-issues#6380
Optimize FillDefaultsGenerated
Some lightbinner cleanup, allow it to be used directly without the complex system that scenesystem wants
VolumetricFogRenderer has it's own lightbinner outside of lightbinner pool, does lightbinning to fetch fog lights for the fog context only, fixes fog light settings not doing anything, deprecate LAYERFLAGS_NEEDS_FOG_CONTRIBUTING_LIGHTS since we don't need special code for that anymore
Share dynamic shadow atlas if we have more than one lightbinner per view ( for example, fog ), fix volume fog no shadows option, cleanup unused shit
Put fog mode in it's own category and add nice icons to them
https://files.facepunch.com/sam/1b0611b1/zwd8qAJFu7.png
These convars don't do anything or are redundant, some notes for tiled rendering in the future
Remove deprecated VR stuff for volumetric fog on rendering pipeline, note for Alex that we can just reproject the frame for eye 2 for cheap volumetric fog rendering, any crumbs will be stripped more when I remove clipmaps
One lightbinner per volumetric fog rather than creating it every frame
Start removing fog clipmap rendering, there are better ways to do this and it's massive
Disable clipmaps on managed code, clean up shader code
Remove VR-specific frustum stuff from volumetric fog
Get rid of redundant data
Separate two passes cleanly, remove accumulation TAA, we'll do a proper big pants one
TAA stub
Fancy volumetric fog taa, move what was on integration step to previous pass, so this has pretty much the same cost and memory footprint as previously but much higher quality
Proper fog TAA with ping-ponging accumulation textures
Iterate fog denoising
Do soft TAA jitter and encode non-final texture to a softer color space so that TAA bbox is also softer
Final cleanup, fix fog density, fix obsolete error
Do soft TAA jitter and encode non-final texture to a softer color space so that TAA bbox is also softer
Final cleanup, fix fog density, fix obsolete error
Don't use strong handle here, just temporarily increment refcount, I don't trust using strong handle here
Fix error texture spam when calling ClearUnorderedAccessViewUint, created texture needs to be put into a strong handle so refcount isn't zero
Fix exception in CCameraRenderer::RenderToLayer
Add prediction to SetValue too
Handle backend exceptions
add http caching
Fix favourites page NRE
Should fix tiles being square above 1080p
Fix GameTiles not fitting properly in Games page and Org Modal
Make VRController.GetJointData() public so people can make their own hand components
Show achievement progress on package modal
Update service models
Pass scores down to achievement notice
Show/lerp score
Ignore TaskCancelledException in OnParametersSetAsync
Disable this debug code
Achievement unlocked popup
Constrain gamepad input dropdown to screen
Fix NRE when updating from prefab
Make sure components are using IsValid too
Use !IsValid instead of == null or is null for any IValid
Use IsValid instead of != null or is not null for any IValid
Achievement list on packagemodal
tweak menu transitions
Add RunEvent<T>
Sandbox.Services update
Add Sandbox.Services.Achievements class
Menu listens for Protobuf.AchievmentMsg.AchievmentUnlocked messages
Latest api models
Add Package.GetAchievements()
Update IAchievementApi
Grab achievements when starting game
Add Sandbox.Services.Achievements.All
When stats are incremented their values are updated locally
Latest achivement api
AchievementCollection, stat based fractions
Latest achivement api
AchievementCollection, stat based fractions
Proper fog TAA with ping-ponging accumulation textures
Apply primitive render attributes in animatables too
ButtonAttribute pulls method name as the title if not specified. ButtonAttribute no longer includes Label, and takes up the full width. Resolves Facepunch/sbox-issues#6214
https://files.facepunch.com/CarsonKompon/2024/September/06_19-28-MurkyGopher.png
Fancy volumetric fog taa, move what was on integration step to previous pass, so this has pretty much the same cost and memory footprint as previously but much higher quality
Oops bring back wrapping on normal labels
Add RunEvent<T>
Sandbox.Services update
Add Sandbox.Services.Achievements class
Menu listens for Protobuf.AchievmentMsg.AchievmentUnlocked messages
Latest api models
Add Package.GetAchievements()
Update IAchievementApi
Grab achievements when starting game
Add Sandbox.Services.Achievements.All
When stats are incremented their values are updated locally
Separate two passes cleanly, remove accumulation TAA, we'll do a proper big pants one
Remove VR-specific frustum stuff from volumetric fog
Get rid of redundant data
Added scroll support to single-line TextEntry, will now scroll to caret/selection when confined by layout, Facepunch/sbox-issues#6274
https://files.facepunch.com/solw/2024/September/06_19-10-DeterminedFlycatcher.mp4
Disable clipmaps on managed code, clean up shader code
Remove deprecated VR stuff for volumetric fog on rendering pipeline, note for Alex that we can just reproject the frame for eye 2 for cheap volumetric fog rendering, any crumbs will be stripped more when I remove clipmaps
One lightbinner per volumetric fog rather than creating it every frame
Start removing fog clipmap rendering, there are better ways to do this and it's massive
WIP: Only allow opening editable action graphs
Some lightbinner cleanup, allow it to be used directly without the complex system that scenesystem wants
VolumetricFogRenderer has it's own lightbinner outside of lightbinner pool, does lightbinning to fetch fog lights for the fog context only, fixes fog light settings not doing anything, deprecate LAYERFLAGS_NEEDS_FOG_CONTRIBUTING_LIGHTS since we don't need special code for that anymore
Share dynamic shadow atlas if we have more than one lightbinner per view ( for example, fog ), fix volume fog no shadows option, cleanup unused shit
Put fog mode in it's own category and add nice icons to them
https://files.facepunch.com/sam/1b0611b1/zwd8qAJFu7.png
These convars don't do anything or are redundant, some notes for tiled rendering in the future