All Projects → keijiro → Noiseball3

keijiro / Noiseball3

A Unity example that shows how to use the new implementation of DrawProcedural.

Programming Languages

procedural
45 projects

Projects that are alternatives of or similar to Noiseball3

Nnao
Neural Network Ambien Occlusion based on http://theorangeduck.com/page/neural-network-ambient-occlusion
Stars: ✭ 57 (-61.22%)
Mutual labels:  unity, unity3d, graphics, shader
Hologramshader
✏️ Test of an hologram material made in Unity.
Stars: ✭ 684 (+365.31%)
Mutual labels:  unity, unity3d, graphics, shader
Swarm
An example of use of compute shaders and procedural instancing.
Stars: ✭ 547 (+272.11%)
Mutual labels:  unity, unity3d, graphics, shader
Drawmeshwithmotionvectors
An example showing how to generate per-object motion vectors when using DrawMesh.
Stars: ✭ 65 (-55.78%)
Mutual labels:  unity, unity3d, graphics, shader
Testbedhdrp
Testbed project for Unity HDRP (High Definition Render Pipeline)
Stars: ✭ 859 (+484.35%)
Mutual labels:  unity, unity3d, graphics, shader
Unitypcss
Nvidia's PCSS soft shadow algorithm implemented in Unity
Stars: ✭ 533 (+262.59%)
Mutual labels:  unity, unity3d, graphics, shader
Gpu Planetary Rendering
GPU atmosphertic scattering and planet generation in Unity 3D
Stars: ✭ 92 (-37.41%)
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 (+209.52%)
Mutual labels:  unity, unity3d, graphics, shader
Pcx
Point cloud importer & renderer for Unity
Stars: ✭ 806 (+448.3%)
Mutual labels:  unity, unity3d, graphics, shader
Radialprogressbar
Customizable radial progress bar shader for Unity3D. Allows you to set arc range, minimum and maximum colors, textures, radius, and a few more things. Create HP Bars, Speedometers, rank progress, etc!
Stars: ✭ 714 (+385.71%)
Mutual labels:  unity, unity3d, graphics, shader
3d Game Shaders For Beginners
🎮 A step-by-step guide to implementing SSAO, depth of field, lighting, normal mapping, and more for your 3D game.
Stars: ✭ 11,698 (+7857.82%)
Mutual labels:  unity, unity3d, graphics, shader
Packedrgbmshader
32-bit packed color format with RGBM encoding for shader use
Stars: ✭ 39 (-73.47%)
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 (+259.18%)
Mutual labels:  unity, unity3d, graphics, shader
Temporalreprojectionexample
Temporal reprojection example for Unity
Stars: ✭ 82 (-44.22%)
Mutual labels:  unity, unity3d, graphics, shader
Kvantwig
Non-realistic hair simulation in Unity
Stars: ✭ 467 (+217.69%)
Mutual labels:  unity, unity3d, graphics, shader
Noiseshader
Noise shader library for Unity
Stars: ✭ 616 (+319.05%)
Mutual labels:  unity, unity3d, graphics, shader
Retro3dpipeline
A minimal example of a custom render pipeline with the Retro3D shader.
Stars: ✭ 354 (+140.82%)
Mutual labels:  unity, unity3d, graphics, shader
Miniengineao
SSAO image effect from Microsoft MiniEngine, ported to Unity.
Stars: ✭ 448 (+204.76%)
Mutual labels:  unity, unity3d, graphics, shader
Kinobloom
Bloom effect for Unity
Stars: ✭ 704 (+378.91%)
Mutual labels:  unity, unity3d, graphics, shader
Shadergraphexamples
Simple examples of Unity shader graphs.
Stars: ✭ 869 (+491.16%)
Mutual labels:  unity, unity3d, graphics, shader

NoiseBall3

gif

This is an updated version of NoiseBall2 that shows how to use Graphics.DrawProcedural to draw procedurally generated objects without giving any mesh data to the render pipeline.

Note that the DrawProcedural method was refurbished in Unity 2019.1 -- it's replaced with a new implementation, and the previous implementation was moved to a newly introduced method named DrawProceduralNow.

So, now the following methods are available for procedural approaches.

  • DrawProceduralNow - Immediately executed without help of the render pipeline (i.e. no lighting/shadowing).
  • DrawProcedural - Executed via an intermediate renderer that supports the standard lighting/shadowing features.

It can be said that DrawProcedural is the handiest way to draw procedural objects with enabling the standard lighting model and the post processing effects.

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].