239,545 Commits over 3,837 Days - 2.60cph!

6 Months Ago
Test Clean up - use TransformInterpolate class Can't modify transform if we're a network object root and a proxy - we must stay true to network transform target Hook up Interpolation enable/disable from Inspector. When Owner calls ClearInterpolation, set a bit on the update msg to have other clients do so as well. Hook up Network.Interpolation and Enable/DisableInterpolation() on the accessor. Fix to allow interp property to be set by GameObjectHeader Serialize the interpolation bool with GameObject
6 Months Ago
▋▉▊▄▉ ▆▋▍▇▄█▄▆ ▍▅▌ ▄▇▇█▊▌▇▊▄▊ █▅ ▋▉▊▉▄▍▋ ▉▅ ▄▌▉▅▍▊▌ ▋▉▇▋▇▄▄▅▆ ▉▆▍▆▄▄▍▌
6 Months Ago
Reverting 95562 electrical button power burst change, back to 2
6 Months Ago
Fixed Timer Switch not deployable ~1 meter below ceilings
6 Months Ago
player update. water pipe shotgun holster position edited
6 Months Ago
playerupdate. water pipe shotgun anim set exported and waterpipe wm reload anim edited
6 Months Ago
Fixed electrical components consuming 0 power still mentioning 1 power usage in their information panel Explicity show 0 power usage on electrical items consuming 0
6 Months Ago
Health Regen
6 Months Ago
▅▉▋▉█▄▉█▉ █▆▊▇▆▆█▅▄▅ ▋▋ ▅▆▅▇▅▇▌▌▍ ▄▋▆▋ ▇▆ ▇▆▊▉▌ ▄▊▄▄▇▍/▊▊ ▅▆▍▅▅
6 Months Ago
Merge from main
6 Months Ago
Added 'selectitem' command to allow non-admin clients to use pipette without the item giving part Codegen
6 Months Ago
Fixed charge and deplete battery commands compiling issue on client
6 Months Ago
random spawns printers
6 Months Ago
Debug view for scene ref nodes
6 Months Ago
Make control sheet labels draggable
6 Months Ago
Merge property or variable get / set nodes
6 Months Ago
6 Months Ago
IMessageContext.StackTraceIdentifier Include Context.StackTraceIdentifier in ValidationException.ToString() Merge branch 'legacy/1.3'
6 Months Ago
Leaderboard backup, run #10900
6 Months Ago
Parent merge
6 Months Ago
Merge from main
6 Months Ago
LOD4 and prefab setup for truck models
6 Months Ago
Backups
6 Months Ago
food assets and setup with tintmask
6 Months Ago
▆▅▆▇▊▍▌▌ ▊▍▅ ▍▄█▋▅▌▋▋ ▍▋ █▊▍▌ ██▉▊ ▌█ ▋▅ ▇▅▉▌▄▅ ▄▆▌ ▄▇▅▅▌▇▅▅
6 Months Ago
Item Printer Cost panel supports text Remove unused and clean up Item Printer prefab
6 Months Ago
TTT: add TTTShowSearchScreen hook (#2074)
6 Months Ago
Input keys clean up Dev menu
6 Months Ago
Find correct item tier to scrap Update .gitignore
6 Months Ago
Item recycler Scrap item health as int clean up
6 Months Ago
Leaderboard backup, run #10876
6 Months Ago
Health increase item
6 Months Ago
Set up health Game manager check
6 Months Ago
Start managing time and other information Draw time on ui Small ui tweak Scale chest price based on some stuff
6 Months Ago
AI uses Stat speed clean up
6 Months Ago
merge from wr_minigun_reload_fix
6 Months Ago
Auto collect font files to upload too
6 Months Ago
Leaderboard backup, run #10852
6 Months Ago
PlayerStats > Stats
6 Months Ago
clean up
6 Months Ago
fixed metal roof tga not reading correctly
6 Months Ago
merge from main
6 Months Ago
Added 'pipette' command: gives you the item you're looking at and places it in your hands If you already have it, swaps it with your currently selected item
6 Months Ago
Fix tiled rendering on multiple viewports, was taking the main viewport from view rather than the actual viewport from layer :S https://i.imgur.com/PCXh3hJ.png
6 Months Ago
Temp hack fix device lost error in NativeRenderingWidget.cs
6 Months Ago
Updated test scene file
6 Months Ago
Check if main camera is null for EnvmapProbe dynamic renders
6 Months Ago
player update. exported/ setup water pipe shotgun anims
6 Months Ago
Got wind working with LODing
6 Months Ago
Cubemapper (#1504) * Cubemapper tests * Remove all ggx code for now & just copy directly to cubemap array * TextureCube with mipmaps and arrays and mipmaps * Move texture logic from cubemapper to c# * Stub for cubemapper_cs, will calculate both GGX and spherical harmonics all in GPU * Handle all array index stuff in cubemapper * Allow for single sliced cubemap array, needed to be able to render an independent texture in the renderer since it expects a TextureCubeArray, also allow TSPEC_CUBE_CAN_SAMPLE_AS_ARRAY if we want UAV Also fix a problem where CTextureManagerVulkan::GetImageView wouldn't work with a cubemap array as a rwtexture2darray in compute shaders * Fix cube orientation when copying, do texture per envmap probe instead of a singleton array, this will cause headaches with multiple envmaps intersecting but makes it much simpler * GGX filtering * Don't bother with writing cubemap normalization right now (in fact disable it for now!), reuse previous mip so that we have more quality with less samples * Assert isn't valid anymore in ComputeImageViews since we can pass a cube array * Do cubemapper processing of all faces at once without using intermediary copies, 4-8x speedup (~17ms > ~2.5ms), still needs to be faster https://i.imgur.com/b61mX1Y.png * Rendersystemvulkan: Alllow binding specific cubemap [ & arrays ] mips if UAV * Remove unsued, clean up * Dynamic cubemap component settings * Remove the old BuildCubeMaps * Add WidgetUtil.CreateSwapChain * NativeRenderingWidget renders in regular render path * Fix RenderDeviceInfo_t wrong size * Add HandlePendingSwapChainResize for explicitly handling swapchain resize events before doing any work, fixes NativeRenderingWidget.RenderScene rendering on a frame with different window size than the actual swapchain ( and then having invalid color/depth buffers) * CI fails building shaders when machine is coming from a branch that was deleted, full checkout action should be enough for pulling? * If cubemap has no normalization set, don't consider it for NormalizeCubeBrightness * Compiled shaders with normalization brightness fixes for cubes without SH, reenable cube normalization * Wip fast cubemap filtering ( 2.5ms > 0.09ms 😱 ) * Adjust things on fast envmap filtering, major cleanup, rename shader to envmap_filtering * Use high quality GGX filtering if baking cubemap as OnEnabled * Vulkan: Fix image transition layout when binding a mip of a cubemap that's sampleable as Texture2DArray * Don't fetch render attributes from context, that's composited over, fixes a crash * Assert when UAV Index is invalid * Flag hammer maps to always render cubemaps dynamically & always render at least one frame regardless of distance update settings * Ignore cubemap precomputed handshakes, we can add and remove cubemaps at will on scene, those do not have handshakes so the entire thing was already deprecated when we implemented maploader, this cache gets built by m_nCachedEnvMap at runtime This fixes scene cubemaps not showing on static map geometry * ANTLR: Support any dimension arrays * Use fast envmap filtering even for static ones, looks as good if not better than brute forcing if using a few more taps, delete reference_ibl_lighting.fxc (byebye) * Run filtering in two passes to eliminate any fireflies, realtime filtering looks as good as baked filtering now https://files.facepunch.com/sampavlovic/1b2911b1/465thMK9Yq.jpg * Limit number of simultanious cubemap updates on first load to not overflow transform count in large scenes * Remove S_SPECULAR_CUBE_MAP, stupid define, should just be S_SPECULAR * Extra checks on HandlePendingSwapChainResize, should fix device lost issues when trying to draw subsequently * Adjust number of threads on envmap filtering to avoid collision on accessing same source cubemap on per frame cubemap rendering, doesn't really slow this down * Fix missing textures when trying to query cubemaps from skybox, default value for EnvironmentMap should be thrown from lightbinner, not renderingpipeline * Update shaders --------- Co-authored-by: Garry Newman