All Projects → keijiro → Drawmeshwithmotionvectors

keijiro / Drawmeshwithmotionvectors

An example showing how to generate per-object motion vectors when using DrawMesh.

Projects that are alternatives of or similar to Drawmeshwithmotionvectors

Noiseshader
Noise shader library for Unity
Stars: ✭ 616 (+847.69%)
Mutual labels:  unity, unity3d, graphics, shader
Kinobloom
Bloom effect for Unity
Stars: ✭ 704 (+983.08%)
Mutual labels:  unity, unity3d, graphics, shader
Skyboxplus
Basic skybox extensions for Unity
Stars: ✭ 324 (+398.46%)
Mutual labels:  unity, unity3d, graphics, shader
Swarm
An example of use of compute shaders and procedural instancing.
Stars: ✭ 547 (+741.54%)
Mutual labels:  unity, unity3d, graphics, shader
Packedrgbmshader
32-bit packed color format with RGBM encoding for shader use
Stars: ✭ 39 (-40%)
Mutual labels:  unity, unity3d, graphics, shader
Pcx
Point cloud importer & renderer for Unity
Stars: ✭ 806 (+1140%)
Mutual labels:  unity, unity3d, graphics, shader
Nnao
Neural Network Ambien Occlusion based on http://theorangeduck.com/page/neural-network-ambient-occlusion
Stars: ✭ 57 (-12.31%)
Mutual labels:  unity, unity3d, graphics, shader
Depthinverseprojection
An example showing how to inverse-project depth samples into the view/world space in Unity.
Stars: ✭ 296 (+355.38%)
Mutual labels:  unity, unity3d, graphics, shader
Shadergraphexamples
Simple examples of Unity shader graphs.
Stars: ✭ 869 (+1236.92%)
Mutual labels:  unity, unity3d, graphics, shader
Testbedhdrp
Testbed project for Unity HDRP (High Definition Render Pipeline)
Stars: ✭ 859 (+1221.54%)
Mutual labels:  unity, unity3d, graphics, shader
Unitypcss
Nvidia's PCSS soft shadow algorithm implemented in Unity
Stars: ✭ 533 (+720%)
Mutual labels:  unity, unity3d, graphics, shader
Kvantwig
Non-realistic hair simulation in Unity
Stars: ✭ 467 (+618.46%)
Mutual labels:  unity, unity3d, graphics, shader
Texturepanner
This repository hosts a shader for Unity3D whose main goal is to facilitate the creation of neon-like signs, conveyor belts and basically whatever based on scrolling textures
Stars: ✭ 528 (+712.31%)
Mutual labels:  unity, unity3d, graphics, shader
Hologramshader
✏️ Test of an hologram material made in Unity.
Stars: ✭ 684 (+952.31%)
Mutual labels:  unity, unity3d, graphics, shader
Spheredissolve
Customizable procedural spherical dissolve shader for Unity3D, for all your customizable procedural spherical dissolve needs!
Stars: ✭ 311 (+378.46%)
Mutual labels:  unity, unity3d, graphics, shader
Retro3dpipeline
A minimal example of a custom render pipeline with the Retro3D shader.
Stars: ✭ 354 (+444.62%)
Mutual labels:  unity, unity3d, graphics, shader
Videoplayereffects
Experimental special effects for VideoPlayer (Unity 5.6 new feature)
Stars: ✭ 252 (+287.69%)
Mutual labels:  unity, unity3d, graphics, shader
Rdsystem
Reaction-diffusion system with CustomRenderTexture.
Stars: ✭ 271 (+316.92%)
Mutual labels:  unity, unity3d, graphics, shader
Miniengineao
SSAO image effect from Microsoft MiniEngine, ported to Unity.
Stars: ✭ 448 (+589.23%)
Mutual labels:  unity, unity3d, graphics, shader
Unityurpunlitscreenspacedecalshader
Unity unlit screen space decal shader for URP. Just create a new material using this shader, then assign it to a new unity cube GameObject = DONE, now you have unlit decal working in URP
Stars: ✭ 455 (+600%)
Mutual labels:  unity, unity3d, graphics, shader

DrawMeshWithMotionVectors

This is an example showing how to generate per-object motion vectors correctly when using Graphics.DrawMesh to draw objects.

gif

The sphere in the gif above is drawn with using Graphics.DrawMesh. The previous versions of Unity can't generate per-object motion vectors on this sphere, so that only camera motion is applied in motion effects (motion blur, temporal anti-aliasing, etc.).

Unity 5.6 introduced BuiltinRenderTextureType.MotionVectors that provides access to the internal motion vectors buffer. One can overwrite the buffer with using command buffers to generate per-object motion vectors on objects drawn with DrawMesh and its variants.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].