userLorenz Junglascancel

402 Commits over 92 Days - 0.18cph!

3 Months Ago
Deploying to gh-pages from @ Facepunch/recastnavigation@7efacd65d0620b39c4ece43fba7c4c0e72b9aba1 🚀
3 Months Ago
Enable 64bits for poly references Again since we are only targeting x64 this does not have a performance impact. Memory usage will be slightly increased, but only if many refs are held by the user.
3 Months Ago
Pull latest changes from FP recastnavigation fork Among upstream recast changes this also includes a change to: Bump RC_SPAN_HEIGHT_BITS from 13 to 16 Increasing the bits used, will yield more accurate height information in the generated navmesh voxels & polys. This does not change the size of rcSpan on x64 platforms. (See https://godbolt.org/z/4eKq45daK) Therefore, this is free accuracy improvement without perf or memory impact.
3 Months Ago
Don't consider cells inside a triangle if the triangle just touches the cell
3 Months Ago
Deploying to gh-pages from @ Facepunch/recastnavigation@ac488df6fe9a3c2575e36c4eddc5b03815891b5f 🚀
3 Months Ago
Removed unused dividePoly function see a4e1e2b
3 Months Ago
Deploying to gh-pages from @ Facepunch/recastnavigation@217f9d61e5a45e71722fa58f21345a117a81c9bc 🚀
3 Months Ago
Bump RC_SPAN_HEIGHT_BITS from 13 to 16 Increasing the bits used, will yield more accurate height information in the generated navmesh polys. This does not change the size of rcSpan on x64 plattforms. (See https://godbolt.org/z/4eKq45daK) x64 is the only platform we are targeting for s&box and Rust. Therefore, this is free accuracy improvement without perf or memory impact.
3 Months Ago
Deploying to gh-pages from @ Facepunch/recastnavigation@a4e1e2bbfc518e12fd3b582e4d4aeae9b5d81cb2 🚀
3 Months Ago
Fix bug leading to stack smashing Fixes recastnavigation/recastnavigation#687 To address this, I basically reverted recastnavigation/recastnavigation@e063ba6 & recastnavigation/recastnavigation@adcd4f4 which seem to be the most likely culprit for the issue. Contrary to the commit message in e063ba6, which claims that the changes made are an optimization, reverting the changes had no measurable impact on performance.
3 Months Ago
Fix warning
3 Months Ago
Expose navlink ConnectionRadius
3 Months Ago
Copy over properties when bulk creating multiple nav links
3 Months Ago
Link connection radius should be internal not private
3 Months Ago
Remove debug #pragma optimize statements
3 Months Ago
NavLink doc comments Format
3 Months Ago
Modify default agents to behave better when traversing nav links (They still suck though) https://files.facepunch.com/lolleko/1b0611b1/sbox-dev_xO6m7sWLTo.mp4
3 Months Ago
Center ameObject when navlink start/end changes
3 Months Ago
Imrpove nav link visualization https://files.facepunch.com/lolleko/1b0511b1/sbox-dev_NU9m49nbd2.jpg
3 Months Ago
Visualize nav link connection state https://files.facepunch.com/lolleko/1b0511b1/sbox-dev_nH8r76TUg2.mp4
3 Months Ago
Improve handling of empty navmesh tiles Also improve editor auto update when world bounds change. Update skinned renderers if they have physics bones Don't invoke ISceneCollisionEvents for trigger intersections Expose MeshComponent.Model Physics tool selects all rigidbodies in hierarchy Switch SSAO to use GTAO Add missing XeGTAO headers Editor buttons desaturate when disabled/readonly Shader rebuild Disable Navmesh Warning "Could not build compact data" for now Revert 7e8268d0ca, it was causing issues when selecting every other GameObject node, I don't understand what it's trying to do 🙊 Trigger exit detection only checks if there's any contacts on triggers, not non triggers Adjustments to cubemap normalization, make cubemap feathering happen from center of cubemap, and in world units, rather than inner, math is much simpler Clamp cube box parallax projection to actual bounds box the box, cleanup Our both our envmap filters uses linear roughness instead of sqrt roughness Gizmo for scale in envmaps, adjust default for feathering in world units Sort envmaps also by size, giving higher priority to smaller ones if it's in a draw condition tiled light culling with edge feathering additions vLevel isn't const Update path of build-shaders, upload all shaders as artifacts Fix EnvironmentMapLight::GetEnvMapColor using deprecated variable Gamma correct samples during accumulated ggx, makes highlight less blown out and makes the cubemap more vibrant Reenable MSAA fetching for SSAO compositing, don't use loops Depthresolve takes first MSAA sample rather than doing min/max calculation, if we want depth::get we'd want the proper sample to compare perfectly on the screen GTAO temporal filter uses edge detection to filter out edge ghosting https://i.imgur.com/EzfclG7.mp4 Grey out tool buttons when disabled Fix asset picker when selecting cloud maps Update shaders Fix Gizmo.Control.Position returning true without it being dragged on Remove unused shit from lightbinner and make everything enums Prevent Scene Editor from attempting to do FPS cam when holding right click in a 2D view Add Joint.LinearStress/AngularStress - mostly to check current impulse against break limits Spring joint impulse checked against break limit seems to be negated? Add Joint.IsBroken Add Joint.StartBroken Add Joint.Unbreak() to activate the joint after breaking Add buttons to joint break and unbreak so it can be toggled from editor https://files.facepunch.com/layla/1b0311b1/sbox-dev_uEafwaFZFI.mp4 Move joint OnBreak action to breaking group Normalize quats going to physicsbody, set to identity if they can't be normalized - could potentially fix rare physics failure in Material.Lerp, normalize after lerping normals Include ReflectionTextureColor in all the layers @samzanemesis might wanna check this is the right thing to do build shaders Fix overriding SSR with a black texture when it should be initialized with a translucent one Bring back external changes detected dialog, move to interface event Assets added at runtime can be loaded into promises/missing resources again Move prefab instance reload logic out of ResourceLoader Clear selection when reloading SceneEditorSession Tweak wording on External Changes dialog to make it more clear what the options are Only ever show one External Changes dialog for a scene Add plane_large.vmdl for large subdivided plane Avoid div by zero in Gizmo.Draw.LineCylinder Fix CameraEditorTool LookAt Now keeps scene focus after look at button is clicked also keeps the camera component selected after the look at target has been picked. Add ScreenSpaceTrace as a generic, simpler class for doing screen space ray tracing, move reflections.hlsl to use it Revert "Include ReflectionTextureColor in all the layers", it's unlikely we can manage to do SSR with roughness fast on translucents, and this causes the issue that SSR reflections from opaques will be drawn over smoke or translucents This reverts commit 8cce50baf03cd7f93e7c89c75dde46319412aff9. Initialize SSR to null on 3d skybox Material preview uses tessellated plane with vertex blends so blended materials can be previewed https://files.facepunch.com/layla/1b0511b1/sbox-dev_D8hvwjbzp3.png Don't make this struct public Try to match normal and tangent of native material editor plane Remove vfc.exe - unused prove me wrong - I want to minimize the entry points for shader compiling Remove unused mathlib class Hair Updates Merge branch 'master' into navmesh-links
3 Months Ago
Fix CameraEditorTool LookAt Now keeps scene focus after look at button is clicked also keeps the camera component selected after the look at target has been picked.
3 Months Ago
Avoid div by zero in Gizmo.Draw.LineCylinder
3 Months Ago
Initial navmesh link editor https://files.facepunch.com/lolleko/1b0411b1/sbox-dev_tfs96azAGk.mp4
3 Months Ago
Refactor non polymesh navmesh data Initial link component Add navmesh links to tile cache
3 Months Ago
Disable Navmesh Warning "Could not build compact data" for now
3 Months Ago
Improve handling of empty navmesh tiles Also improve editor auto update when world bounds change.
3 Months Ago
Navmesh only run heightfield generator cleanup in task Navmesh generator cleanup is sub 10 microseconds, so not worth it to dispatch a task, since task dispatch overhead would be higher than actual compute.
3 Months Ago
Fix potential infinite loop in navmesh generation Fix navmesh geometry collection physicsworld NRE
3 Months Ago
Fix NavmeshGeneration performance regression caused by 51c5e14 Navmesh generator cleanup now runs in parallel Heightfield span pools are no longer freed after a completed generator run, instead they are returned to the freelist and reused. Disposing of the generators now waits for all active generator tasks to terminate.
3 Months Ago
Fix physics triangulation occasionally overwriting the vertex buffer Spheres & Capsules were always written at the beginning of the buffer
3 Months Ago
Fix NRE when scene was unloaded while navmesh generation was running
3 Months Ago
Add navigation obstacle scene and examples
3 Months Ago
Fix hull navmesh area bounds using z up instead of y up.
3 Months Ago
Dynamic NavMesh Obstacles (#1706) Allows to block of certain areas of the navmesh both in editor and at runtime. For this we introduce and expose the concept of **navmesh areas**. Areas can affect navmesh generation and agent behavior/pathing. ### Details - Accomplished by implementing a tile cache that stores an intermediate representation of the navmesh - The intermediate representation can be used to modify & remove areas of the navmesh. - Modifying the intermediate state is magnitudes cheaper than rebuilding the navmesh from scratch. - Static areas are basically free. - Moving areas are a bit more expensive, but you should be able to have at least a couple of dozens of them - The area's shape is defined by a (trigger) collider that can be linked to a nav area component https://files.facepunch.com/lolleko/1b2911b1/sbox-dev_JTOOu8AAeA.png https://files.facepunch.com/lolleko/1b2911b1/sbox-dev_3XdDSxj7Ly.mp4 https://files.facepunch.com/lolleko/1b2511b1/sbox-dev_XBNEUDAPfh.mp4 https://files.facepunch.com/lolleko/1b2111b1/sbox-dev_CQAKEpUbQk.mp4 ### Summary Allows to create a navmesh area, link it to a (trigger) collider & set it to blocking to create an obstacle. In the future we can expand on area functionality: custom tags, local navmesh generation parameters...
3 Months Ago
Fix NavmeshArea.IsBlocking not toggling state
3 Months Ago
Add doc comments to navarea component Make new PhysHsape.UpdateShape functions internal Ensure IsGenerating flag is cleared if navmesh generation fails
3 Months Ago
Attempt to use static nav generator pools again
3 Months Ago
Fix navmesh native destructor
3 Months Ago
Non static init of navmesh generators
3 Months Ago
Move navmesh generator pool initialization from static initializer to navmesh.init
3 Months Ago
Dispose of navmesh in Scene Should fix unloaded scenes leaking native navmesh data.
3 Months Ago
Change navmesh initialization to sync
3 Months Ago
Disable some calls to narrow down where test is failing on CI
3 Months Ago
Stop PathWidget fighting back in LineEdit mode and selecting the whole text, fixes Facepunch/sbox-issues#6869 Scene view: disable gizmo interactions while doing camera movement SteamId can be converted to from an int, but will give a warning Fix code archive not using correct CSharpParseOptions Don't debug output xml parse errors Add more package tests Fixed loading game from .sbproj with Dedicated Server that has libraries. Iterate any libraries in the project and add them as projects before compilation Fix warning Add dark_descent and cat_harvest package tests Merge branch 'master' into navmesh-dynamic-obstacles
3 Months Ago
Remove some asserts
3 Months Ago
Fix navmesh generator pool disposal
3 Months Ago
Correctly dispose of native tile cache resources
3 Months Ago
▉█▆▊▅▅: █▌▆▅▉▊ ▊█▉▆▄▉▋/▆▉▋▌▅█▉ ▇▊▆▄█▌ ▇▊▌▄▄ (▄ -> ▍▊▊), ▉▆█▄▉▋▇▊▇ ▅▇▌▌█▋▊▄▅/▊▌▋▊▅▊▊▆▄ ▉█▅▄▉ ▄▉ ▄▉█▅▍▋▍ ▄▍▌▅▄ █▅▅▇▄▌▇ ▌▍ ▌▄▋▇ ▆▋▋▅ ▅▅▋▋▆█▆▆ ▍▆▌▌▊▋ ▇▉ ▉▌▌ █▄▅▆▆▆▊▆█: ▊▋▊▄▅▍ ▋▋▇▇▆▋▍▅▄▊█▍▇▄▋▆▋█▍▇▄▄▌▉█▊▆▋▉▆▉▌▊▋▄▉▆▆▉▅ █▍▅▊▋▆: ▆▅▊█▍▅▅▌ <▍▋▌▋▌▉▉▅@▊▋▄▊▇.▊▄▆> ▄▉▌▋: ▍▅▍ ▆▌▆ ▇▄ ▅▅:▆█:▋▌ ▋▆▊█ +█▄▊▇ ▆▇▉▅ ▍▊ ▄▇██▇▇ ▌▋▌ ▊▌▉▅█ ▄█▉ ▊▌█'▌ ▋▊▉▅ ▌▅▉ ▌▉▊▋▇▊▄ ▋▋▌▄ █▍▄█▄▊▌ ▌▅ ▇▋▌▍▆ █▌▆▋▌ ▇█▅▇▍ ▆▍▅▆█▇▆▋▊ ▉█ █▌▇▊▍▆▍▍ ▆▄▋▊ ( ▉▌▌▋▍://▌▉▉▆▊.▄▆▄█▉▇▋▄▍.▅█▋/▄▄▍▅▍/▄▉▅▄▌▉▆▉/█▊▊▆-▍▄▍_▅▌▋▅▉█▋▊▅▆.▄▉▆ ) ▋▌▋▋▌▌ ▉▄▅▊▆▋▌▌▅▊▅▋▄▄▉▊▅▆▌▊▉▆▌▍▌▋▍▍▌▉▌▌█▅▉▌▄▆▉▇ ▊▉▊▍▄█: ▄█▋▄▊█▍▅ <▆▆▅▅▋█▋▌@▄▉▌▆▆.▍▉▊> ▊▍▋█: ▍▍▊ ▍▍▇ ▋█ ▆▋:▍▇:▍▇ ▌▇▊▌ +█▅▊▌ ▉▄▅▋ ▅▅▍▄█▊▋█▆▇ ▉▆ ▆▇▋▆ ▉▆▉█▇▍▅▆ ▍▋▉▊▌ ▄█▉▌▅▆ ▉▉▅▆▆▊█▅▉▋█▊▄▇▇▆▆▉▋█▆▄▋▄▋▅▅▊▅▌▍█▄▅▅▋█▍▆▋ ▌▌▊█▉▅: █▆▉▌▅▄▅▋ <▍▉▋▄▉▅▉▌@▍▊▋▄▉.▌▆▉> ▌▇▆▍: ▊▇█ ▆▉▉ ▊▌ ▅▆:▋▍:▆▇ ▅▉▍▇ +▇▅▆▍ ▌▍▋▉ ▉▊▍▍▄▌▌, ▅▄▉▅▉ ▉▄▉ ▊▋ ▋▍▌▋▆▊▋▉ █▍ ▄▊▋▉█ ▉▍▍▍▍▅ ▆▍▄▄▆▊▇█▌▇▊▊▅▅▄▍▌▇▍▆▇▉▌▌▉▇▄▋▄▉▄▉▊▊█▍▋▊▍▄ ▇▅▊▉█▍: ▉▇▇▉▅▉▄▊ <▌▊▄▆▉▍▉▊@▇▆▇▅▄.▉▊▄> ▅▅█▌: ▍▅▍ ▆▇▉ ▌▋ ▇█:▇█:█▍ ▋▌▍▉ +▄▍▉▊ ▋▇▆▇ ▍▍▊▇█▍▅ ▅▋▊▊▋▌ ▍▅▋▇▍▌▍▊▄▋▌▅▉▄█▇▆▇▊▄▄▊▌▄▄▍█▇▇▅▅▅▅▋▅▌▋▇▌█ ▇▊▍▆▌▅: ▍▍▊▋▉▆▄▋ <▋▇▆▋▆▍█▉@▆▌▉▊▍.▋▍▊> ▊▌▉▅: ▋█▊ ▊▆▌ ▄▉ ▊▉:▊▍:▅█ ▄▋▉▍ +▄▌▄▋ ▇▄▊▅ ▆▅▍▄▅ ▊▊▍▄▇▊ ▊▉█▍▍▍▋▆▊▉█▋▅▄▊▌▊▄▍▄▊▍▄▉▌▉▊▇▍▆▆█▋▅▍█▊▍▅▌ ▊▌▄▊▋█: ▌▍▉▌▄▌▄▆ <▄▊▉▌▅█▆▇@▇▇▇▄▄.▍▅▅> ▆▋▍▅: ▇▋▍ ▇▌▇ ▋▊ ▌▄:▆▇:▇█ ▅▆▍▋ +▋▊▉▇ ▉▊▇▋█▌ ▌▇▊▆▌▍▍▆▋ ▆▄ ▌▊▉█▆ - ▄▍ ▊▉ ▌▌▆█▍▆▉ ▍ ▆▇▍▄▍▍▌██ ▍██ █▌▉▊▊▍▄▍ ▌▆▉ █▅▌▍▍ ▅▅ ▆▊▇▍▍█▆ ▄▍ ▋▋▄▌▄▉▅▅, ▍▇▉▋'▄▆ ▊▄▄▋ ▉▍▄▍ ▌▇▆▋▌▅ █▍▅█▊▄▆▆▌██▍▍▋▍▉▉▇▆▇▋▍▍▊▋▄▌▋▍▊▉▇▊▄▊▄▆▅▄▄ ▍▇▅▉▆▊: ▄▇▄▆▋▌██ <▇▉▍█▋▊▅█@▆▅▍▅▆.▌▄▌> ▇█▇▆: ▇▇▋ ██▄ ▄▉ ▋▊:▍▊:▍▆ ▋▅▄▌ +▇█▌▉ ▄▄▊▅▇▆▆ ▅▍▇▉ ▆▄▍▌▉▍▊▊▊ ▋▊▆▆▅▄▄ ▍▋▉▄▌ ▇▌ ▆▋▋▇ ▊▌▇▉▋▉▄ ▊▅▋▆▉▌ ▊▌▆▋█▋▇▍▇▅... ▆▇█▆▋▌ ▆▋▅▌▊▄▋▇▅▌▋▅▉▌▇▊▆▊▇▄▅▅▌▍▇▇▆▊▄▆▇▇▇▌▍▄▅▋▅▊ ▄▍▉▉▄▆: ██▌▊▅▋▌▊ <▊▄▍▅█▆▋▄@▆▍▉▇▋.▊▍▆> █▉█▋: ▍▆▉ ▆▍▅ ▍▌ ▌█:▅▉:█▋ ▅▌▅▄ +▆▍▍▍ ▊▊▄▊█ ▋█▉ ▅▉▇ ▅▋█▉▊▅▇▇ ▍▆▌▌ ▍▍▄▉ ▅▅▇▆▉ ▋▄▊▍▆▇▊▅▇▇▆▉▆▆▍.▊▆█ ▍▍▉▄▋▋▌▄▊▇▆: ▇▇▋▇▋█▋ ▌▊█ ▋▊ ▅▉▌▊▆▋▊▄ ▌▌▋█▆▍▊ ▆▌▅▅▊▆▍▍▄▉ ▆▉▌ ▆▌▊▍▅▇▇█ ▌▅ ▉▆▄▇▇█▉▆▄ ▋▋█▍█▆▄▇▆▊ ▌▅▄ ▆▋ ▋▄▅▌▆▍▊▅ █▋▉▍▊▍ ▊▉█ ▆▅▋▅▌▌▆▊▄▍, ▅▌▄▍█▄ ▆▉▇ ▆▋▄▄▅.▉▄▆ ▌▇█▇▉ ▄▇▍▍█▊▍ ▅▍▅ ▆▍█▇█▋ ▅▌██▇ ▆▋▆▄▉ ▉▌ ▊▇▆▊ ▊▉▋ ▊▄▉▉▉▊ ▅▆▉▋▅▋ ▆▉█ ▋▉▍▍▆ ▌▉▋▌▌▄▄ █▊▌▉▇▌▉▋▊▊▆ ▌▋▅▍ ▆█▍▌▇▆ ▆▉▋▊▊ ▆▍▄▇▊▊ █▊▊▊▊▆▋▌▊ ▌▋▅▆ ▄▅ ▅▌▇▆ ▍▄▊▋ ▆▄▅'▍ ▋▉▊ ▋▆▍ ▉█▅█▇ ▊▆▅▄▋███▉▉█▅▄▋▄ ▋▊▋, ▌█ ▉█▆▄'▆▄ ▅█▅▊ ▊▄▊ █▊▄▋▄ ▍▇▋▉▉ ▇▆█▉ ▍▅▆▍▊▇▍ ▌▅▍▅▋ ▋▇▍▇▌▍██▊/▄▄▍▊-▌▉▊▍▍▍#▋▌▉▅ ▆▌▋▄▊ ▊▊▉▅▊▇▆: ▍▋▆▋▇▋▄▍▌▅ ▆▆▋▌▆▌▆▍ ▇▍▅▅▋█▅▌ ▋▋▍▉▌ ▇▇▉▉▍, ▋▅▉-▍▌▊▆▅▉█ ▆▌▇▌▆▅ ▆▇▄▌ '▄▋▉▉ ▄▆▍▇ ▆▍▍▅▇▇▅' ▄█ ▇▄▉▍▉▍▋▊ ▍▇▅▆▋ ▄▍▉▊▌▄▉: ▄▍▉▊ ▌▌▊█ ▄▉▄▋▆▋▍▆ █▍█▌▌▍▄▍ ▋▅ ▉▍▄▊▊▉ ▄█▇▇▉ ▍▄▋▆ ▆▉█▇ █▄▍▅ ▊▄▋▇▅ ▋▅▍▊ ▌▋▆▋ ██▌█▊ ▋█▉▋▉ ▌▋▉ ▉▇▊▉▇ ▄▊▋▇▉▌ (▅▍▋'▆ █▍▄▆ .█▉▌▄▉▌ ▌▆▉▉▌▉▌ ▉▊ ▅▋▇▄ ▉ .▊▊▍ ▄▍▄) ▇▋▄▆▅▌ █▊▆ ▄▋▇▄▋▉▌▄ ▆█▍▍▉▆▉ █▅▌▉▉ ▋▊▌▅ ▉▉▅▆▇█▄▄ ▆▆ ▊▇▇ ▆▇▄▌▉ ▋▉▍▄▋ ██▋▄▍▍▄ ▉▇▍▆▉▆▇ ▉▋▋█ ▍▊▆▊ ▆▄▌▉█▊ ▆▌ ▆▅█▋▋▌▊.▇▅▄▅▋▆█<▅▊▄▊▇▌> ▍▅▄▇█▋▆▊▅ █▉█▆ ▉▊▅'▅ █ ▊▋▅█▆▌, ▉█ █▋▍▅█▋ ▇▇▍▅▅▄▇▍▊ ▍▅▋▉▋▉▋▋▄▉▊▄▊ - ▋▉▌▅▌▍▇█ ▋▄▍▋▄▍ ▉█▍▅ ▅▋▄▅▆ ▉▇▌▍▋ ▍▍▊▋▋▋▊█▇▍▅▇▊ ▆▆▅ ▋▌▊ ▉▅▇▄ █▉▇▉▉ ▆▆ ▌▄▍▊█.▌█▅▍▇▇ - ▅▄▍▍▋▄ ▌ ▍▄▌█▅█▉ ▊▌ ▅▆ █▅▄▅, ▅▅▅▇▍▋█ ▋▉ ▌▇▆▄▆▄ █▌ ▆▊▉▅█ ▇▌▉▄▌▍▆▍█▅▆▍ ▍▌▌▇▅▅▉▇ ▆▉▌▅▉▇▌▋ █▆▉▉▍▋ ▋▆▌▌▍█▉▊█ ▆▍▄▆ ▅▊ █▄▉▍▌▅▋▄ ▇▉█▅█▉ ▆▊▊▍ ▆▅▉▉▆▅▅▌ (#▉▅▊▆) █▅▊ ▅▍▅▍▉▅▉ ▍▆█▇▉ ▇▄▅▅ ▉▇▅▄ ▄▄▍▌█▌▄▊▉. █▅▅ ▇▉▇▉▄▊▄▌ ▋▅▇▄ ▍▊▌▋ █▄▄▌▆▄ ▉▄ ▄▇▉▋▄▍▇ ▋▇ ▅ ▆▋▊▉▅ ▍▆▆▇▌ ▊▌'▌▌ ▍▆▅▉▇▆▌ ▆▍ ▆ ▉▋▅▇ ▋▋▋▉▋▋▇▄++ ▅▍▌▅▊▄ ▊▊▇▆█▊▋ ▌▋▌▇▄▆▍ (#▌▇▄█) * ▋▌█ * ▉▅▄▅▅█ ▍▅ ▅▋▆▉▌▊▆▍▇▆ * █▉▍▄▍▅ ▊██▆▋ ▍█▇▋▉▄ ▉▆▄▇▆ ▌▊▉▅▅▉█ * ▇▉█▋▅▆ ▇▉_▉▅▍▉▊▄▋_▇▆▆▌▋▆▉▋▊▆▍▆ * ▋▆█▌▄▅ ▄▄▋▇▆▇ ▄█▄▉▇ ▇▉▋▅▅ ▇▇ ▌▆'▋ ▅▌▋▌ █▅▄▊ * ▆▄▇▌▇ ▉▍▄▄ ▄▌▋▇▆▍ ▇▆▊▆ ▄▊▍▅▍ ▌▇▌▆ ▍█▋▅▄▋▋█▄▉ ▅▅ ▆▄▇ ▆▍█ ▇▍▌▇▊▋▍ ▄▄▆▍/▇▄▍▋ ▋▄▉▆▋ ▋▊█▉▇▊▉ * ▄▌▉▊▍ ▄█▄▌█▉▌ ▍▅ ▄▊▉▉ ▋▉ ▅▇, █▄ ▋▍▆▊ ▋█▇'▄ ▍▆ ▍▅▉ ▊▄ ▇▊▍▌ (▇█ ▋▆▉▊▍▍ ▄▉▅▇▊ ▇▉▌▍▋▋▇█ ▅▉▌▋▆ ▌▅▌ ▉█▍▆▉▅ ▉▄▊▊▍▋!) ▉▆█▌▍▆ ▌▄▋▅▉▌▉█▆▍▌ ▉▇▌▋ ▄▉▅▅-▅▅▆▄ ▌▆▅▋▉ ! ▌▌▄▄▋ ▍▄ ▅▄▇▌▄▊▅▌▉▅▅▇▅ ▍█▋▆ ▊▌▅▉▄▍▌ █ ▅▄▉█ ▍▌▋▇▋▊▄▅ ▇▅█▍ ▇█▊▄▌ ▉▉█▄ ▋▇▍▌ █▅▅ ▉█▍ ▊▉█▊▇▇▍▇.▇█▊▍▉▇▅▆▉▆▌▊▉█▅█▅▉▋▉/▇▉▌▊▍▅▌█▌▌▇▋▌▆▆▄▇▌▋ ▊▊▆▉ ▍▋▋▇▆█ ▄█▌▉█▄ ▋▉ ▄▄▇▉▋▇▊▍ ▄▋▇▅▅▄▇ ▋▅▌▄▍▍▌ ▅▌▊ ▍▌▇▉▅█▅██ ▆▋▇▅▍▍▍▍▊▄▄ ▄▇▍▅▄█ ▉▄▌▊▅▌▉▌ ▋▉▇ █▍▇-▅▊▊▌▉ █▄▌▅▄▍▆▅▌ ▉▊▌▆█ ▊▌▅ ▊▋▄▍▌ ▆▆█▉▉▊ ▊▌█▊▅▊▉▇, ▋▌▌▊▌ ▋▋▇▄▊▅▍▆█/▄▄▍▋-▊▊▌▊▋█#█▊█▄ ▅▄▊'▉ ▍▇▅ ▆▋▄▅▅▅▍▆ ▋█▉ ▇▆▋▇▊█▍▍▉ ▅▅ ▇▆▆▆▊▅▄ ▍▉ ▄▍▆ ▋▆▌ ▉██▍█▍ ▍ ▌▆▆▆▋▇▆▉ ▍▋▄▅█▌▌ ▍█ ▋▅▌▍, ▉█▍▍▅ ▌▌▉█▊▊▅█▇/▄▄█▇-▋▊▍▄▅▆#▉▌▍▊ ▉▄▅▆▅▄ ▇▋▆▆▊/██▄█▅ ▇▄▄▉▌▌▄▇█ ▅▍▉▆▋█▇▌▅▄ ██ █▍▇▄▆▋▅▋▆▅▍ ▉▄▌█▌ █▌▊ ▄▋▋▄▅: ▋▉▉▌ ▇▊▇ ▍▄▊▍▅ ▊▉▊ ▄▌▊▆▍, ▄▍▅▌ ▍██▇▇█▊▊ ▌▆▆▋▆▇█▊▌ ▍▉█ ▍▇▅▍▅▉▅▅▉▄ ▄▌▇▋▍▌▅▄▉▊ (#▍▆▆█) ▆▍▌▉▅▊▅▄▇▋.▌▉▇▉▅▌▆ ▉▅ ▌ ▅▇▇█▇ !!!!!! ▊█▋█▍ ▉▋▄▋▊▆▋▉▄▍▌▄█▊▌▇ █▊▍ ▋▇█▄█▆ ▍▉▇▆▉▅▇▊█ ▅▅▉▊▍▌▄▊ █▆▍▅ ▌▋▊▍ ▅▋▌▊ ▊▅▊▊█ ▋▋▇▇█▋ ▉▇▄█▋▌▌▋▄▊ ▊▍▌▉ ▅▄▋▋▆ ██▉▄▋▄█▌.▆▅▄▊▆▍██▋▋▇▌▅▆▄, ▋▍▍▆▋ ▅▆▊▄▊▅ ▄▇▍▇▇ █▆▍▊ ▉▄▍▇ ▍█▄▇▆█▌▄ ▅▇▋ ▄▌▌▊ ▋▍▉▄▄ ▄▍▅███▍▉ ▅▊▉▋▄▉ ▆▇▄ ▍█▉▌▅ ▍▍▆▇█▉▊ ▅▊▄▍▍▆, ▄▆▊▌▋ ▉▆▌█▌▄ ▄▆▉▇▋ ▄▄█ ▆▍ ▍▅ ▅▅▍▇▍▍ ▍█▌▄▇ ▆▄▇▄▊▄▉▆█ ▅▆▆▆▄▆█ ▊▍█ _▋▇▄▅█▋▌ ▅▇▌█▇▆ ▍▍▇▆▇ ▍██▋▋ █▄▍▌▋▇▋▉ ▇▉ ▇▇▄▅ ▍▌▇ ▌▌▆-▇▄▋▄ ▇▇▊▍▄ ▊▉▄▄ ▉▊▅▉▌▅ ▌▉▇▅ ▌▌▉▍ ▆▇.▉▊▉▉█▇█ ▆▍▉▇▊▋█ ▊▄▇▇██▌ ▇█▋▄ ▊▍▌▍▅▋█ ▇▊▉▄▍█▉▅ ▅▌▉▆ ▋▆ ▌▍▉ ▌▉▆█▋█ (▅▅▌▉▌ ▇▊▆▋▌▍▆▄▌/▊▄▌▌-▆▇▍▋▅▍#▋▋▄▇) ▅▊▉▍ ▊▆█▌▄▍ ▊▋▉ ▊▌ █▌'▍▌ ▄▌▋▊▇▆██ ▇▍▌▋ ▄▇▆▄▅▇▍▊ ▌█▋▄ ▍▅█▋ ▇▍▋▅▌▍▄ ██▍▅▋▅▋ ▄▌ ▅▅▉█▇▉ - ▊▅▌▇▄ ▉▅▋▋▆▌▋▅▇ ▆▋▍▅▆▋ ▊▅▆ ▆█▄▇▌▌▋▊ ▍█▋▆▉▇ █▍▉▆▋▆▌▍ █▊▋ ▊█▆█ ▆▉▍▉▍▉▌ ▍▅▇▌▄▊▌▆ ▇▄▋██ ▆▋█▍ ▍▇▇▍█▊▆▇█▅ ▋▌▌▋▉▋ ▉▍▇▍▌▅▆▄ ▅▆▊ ▌▄▋▅█▄▍▊▊. ▆▍█▉▅▉ ▉█▄ ▇▉ ▇▅▊▌▆▇▉▄▋ ▄▆ ▋▆▍▇ ▇▊▍▆ ▌▌▄▍▉▊ █▌▌▇ ▉▌▄▌ ▊▇▊▇▍▍▄█▍▍▊▍. ▅▆▉ ▋ ▅▍█ ▋▉▊▆▆ ▅▆▋▉ ▋▋▅▅▆▍▉ ▊▊▍ ▋▄ ▅▇▍▅▆▊ ▉▆▇▄ ▅▊█ ▆▆▄▄▇▆▋▆▉▋▅, ▋█▊▅ ▊▌ ▅▆ ▅▇▊▅▋▅▍ ▉▊█▆▊▉▉▋▄▋. ▉▊▆▋ ▄▋▊▉▋▇▌▄▇▉.█▍▍█▄▊▅ ▇▍▇ ▊▄▋▆▅▊▆ ▋ ▉█▅▅▌█▅ ▊▍▉▍ ▋▅▉▆.▍▋▋▉▄▊█ ▉ ▆▋▌▅▄▄█ █▅▅▅█▍█▆▄▉.▇█▊▉▇▅▆▅▋▌█▇▄▅▄▄▌ ▌█▄▇▅ ▉ ▉▅▋▉▄▄▇ ▉▉▋ ▄▋▆▌▄▌▉.▊▍▆▆▍▄▄▄▅█▅ ▉▌▍ ▅▅▌▅█▉▉ ▆▅ █▆▍▊▄▇▋▆ ▌▄▌█▇▌▇▉▄ ▋█▌▉ ▆▍▊▋▌▉▇. ▊▊▆▍▇▌▋▍▄█▄▋▇▆▆▉▍▉▌▇▉ ▊▇▌▄▇▉▆ ▇▆ ▌▅▋▇▊ ▆▋▌▄▉ ▅▇ ▉▉ ▊▋█▇▍█▊. ▅▄▆▌▄ ▆█▌▄▆ ▉▊▋▊▌▍ ▄▊ ▄▌▅▉ ▆ ▅▆▄▌. ▅▇▌▅▇▍▉▊++ ▅█▉'▉ ▍▇▍ ▄▆ ▉▋▌▍▌▌█ ▋▌▊▉ ▊▋▄▉▍▇▆▉ ▅▄ ▅▊▅▍▋ ██▄▅▉▅▉▄ ▉█▆▌▇█ ██▉▇▄ ▄▇▇▍ ▊▉▄▇▍▅█ ▄▊▄▅▇▍▋ ▋▅ ▇▄▋█▄▋▉▌ ▅▊▊▊▇▄ ▌▇▄▉█▉█▋ ▊▌▅█ ▉▌▆▄█▋▋▅ ▊▍▊▍▌▌▄▅▆: ▆▉▋▊▊▅ ▋▇█▆▅ ▊▉█▍ ▇▊▅▊▊ ▄▅▍▌▅ ▇▌▋ ▅▊▉█▆ ▉▇▇█▋://▍▊█▋▄.█▊▉▄▉▋▉▆▋.▇▉▆/▄▊▌█/▆▇▄▅▌▋▋█/▄▄▉▌-▌▅▄_▅▆▅█▆▊▇▇▄▉.█▌▄ ▋▆▇▋▉://▆▋▇█▉.▆▋▌▅▍█▅▊▇.▉▇▇/▍▍▅▊/▌▌▍▄▊█▍▊/▊▌▋▌-▇▉█_▋▋▊▍▋▇▉▇▌▌.▌▄▆ ▋▇▆ █▉▌ █▌▇▇▍▋▋▆█ ▅▋▆▇▋▄▊▊ ▆▍█▆▆▉ ▄▅▋▇▊▌▇ ▉▇▇ ▉▅ ▉▇▇▋ ▅▍▄▅▅▅▊▉▇▅▄▋▍█▅▉▆▆ ▆▆▆█/▄▇▄▊▇▌▌▊ █▆▆▉▌█▆▅ █ ▍█▅ ▍█▌▊ ▉▌▆▍▌▇▅▅█ ▊▌▋ ▄▉▌▋▋ ▋▊▋█▇▊▊ ▇▄ ▌▇▋▄▉▉▉ █▄▉▊▌▋ ▅▅▄▅▅▉ ▉▄▍▄▋ █▆▌▄▅▅▆: ▉▉▌█▋█▇▅▆▅▊ █▆▄▌ ▍▉▊▇▆ █▄▌▍▍▆▍▊ ▆▋▉ ▆▌▆▅▇▍▊▇▉▋▍▇▇██.▌▊▉▆▆▇▋▍▌() █▊▌ ▉▉█▋▌█▉▇▉▄▍▉▄▌▆ ▌██▋█▉█, █▇▄▄█▅█▍ █▊▊ ▅▅▌ ▅▄▄▌ ▌▅▌▋▊▄▆█ ▅▍█▇▋▅▇▅▄ ▄▊▌▄█▌▉▊▇▌, ▍▋▇▊-█▇▍▊▇ ▉▋ ▋▍▌▄▄█▉ ▄▌█▌ ▄▋▄█▆▌█▆▆▅▆▆▆▋▌▇▄▍▋▉▍▉▇▇ ▊▄▍▇▇▄ ▉█▇▅▊▉▊ ▍▅▅▆▅▆▉ █▋ ▉▆▅▅ ▉▅▅▍▌██ ▊▋ ▅▌▄▌▆▉▋▌▅▄ ▆▊▄▌▊ ▆▋▆▋▌▍ ▉▊▆▆▉█▇ █▆▆ ▅▍▆▄▇▆▇▄▄▊▌█▆▍▉ █▇█ ▋▅▆▊▌▌▉▅▋▊▋▅██▌.▌▅▋▋▋▆▍█▆▋▅▄▅█▆ ▊▄▅ ▌▋▄▍█▅██ ▅█▋▇▍ ▆█▉▇▋▌ ▊▉▅▋▋▄▍, ▊▋ █ ▋▉▍▊▄▉ ▋▌▌▊▉▇▆▅▉▋▌ ▌▍▊▊▄█ ▌▇▉▊ ▍▇▌▉▉ ▊▄█▍▋▊▌▋ "▋▋█▅▆▇▇ ▄▆▄▅ ▄▊▅▌▊▄" ▄▆█▌▋█▍ ▅▄▊▆ ▊▉▍▆ ▍▆▍▌▉▇ ▊▄▆▊▋▇ ▋█ ▌▉▆▋▍▊▇ █▌▍▆▉ ▄▅▊▄█▊ ▄▍▅█▆ ▍▅▊█▆▆ '▆▍▅▆▊▅' ▅▄▌▊ ▆▌▉▇▍▊▄-▇█▇▅▆▄▆-▌▇█▇▆▊▆▅▅
3 Months Ago
Remove box from navmesh debug draw