All Projects → keijiro → Noiseshader

keijiro / Noiseshader

Licence: other
Noise shader library for Unity

Projects that are alternatives of or similar to Noiseshader

Gpu Planetary Rendering
GPU atmosphertic scattering and planet generation in Unity 3D
Stars: ✭ 92 (-85.06%)
Mutual labels:  unity, unity3d, graphics, shader, hlsl
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 (+1799.03%)
Mutual labels:  unity, unity3d, graphics, shader, hlsl
Nnao
Neural Network Ambien Occlusion based on http://theorangeduck.com/page/neural-network-ambient-occlusion
Stars: ✭ 57 (-90.75%)
Mutual labels:  unity, unity3d, graphics, shader, hlsl
Computestochasticreflections
Compute Stochastic Screen Space Reflections for unity post processing
Stars: ✭ 163 (-73.54%)
Mutual labels:  unity, unity3d, graphics, shader, hlsl
Alloy
Alloy physical shader framework for Unity.
Stars: ✭ 244 (-60.39%)
Mutual labels:  unity, unity3d, graphics, hlsl
Noiseball2
A small example of procedural modeling with compute shaders.
Stars: ✭ 215 (-65.1%)
Mutual labels:  unity, unity3d, graphics, shader
Unitypcss
Nvidia's PCSS soft shadow algorithm implemented in Unity
Stars: ✭ 533 (-13.47%)
Mutual labels:  unity, unity3d, graphics, shader
Miniengineao
SSAO image effect from Microsoft MiniEngine, ported to Unity.
Stars: ✭ 448 (-27.27%)
Mutual labels:  unity, unity3d, graphics, shader
Rimlight
Customizable rimlight shader for Unity that includes pulsation and noise scrolling. Give your scenes that extra oomph!
Stars: ✭ 170 (-72.4%)
Mutual labels:  unity, unity3d, graphics, shader
Videoplayereffects
Experimental special effects for VideoPlayer (Unity 5.6 new feature)
Stars: ✭ 252 (-59.09%)
Mutual labels:  unity, unity3d, graphics, shader
Swarm
An example of use of compute shaders and procedural instancing.
Stars: ✭ 547 (-11.2%)
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 (-14.29%)
Mutual labels:  unity, unity3d, graphics, shader
Unity Shaders
✨ Shader demo - More than 300 examples
Stars: ✭ 198 (-67.86%)
Mutual labels:  unity, unity3d, shader, hlsl
Skeletalgeometriceffects
Experiments on geometry shader instancing with skeletal animations
Stars: ✭ 436 (-29.22%)
Mutual labels:  unity, unity3d, shader, hlsl
Kinovision
Frame visualization utility for Unity
Stars: ✭ 177 (-71.27%)
Mutual labels:  unity, unity3d, graphics, shader
Rdsystem
Reaction-diffusion system with CustomRenderTexture.
Stars: ✭ 271 (-56.01%)
Mutual labels:  unity, unity3d, graphics, shader
Spheredissolve
Customizable procedural spherical dissolve shader for Unity3D, for all your customizable procedural spherical dissolve needs!
Stars: ✭ 311 (-49.51%)
Mutual labels:  unity, unity3d, graphics, shader
Standardgeometryshader
An example of a geometry shader with Unity's standard lighting model support.
Stars: ✭ 303 (-50.81%)
Mutual labels:  unity, unity3d, shader, hlsl
Kvantwig
Non-realistic hair simulation in Unity
Stars: ✭ 467 (-24.19%)
Mutual labels:  unity, unity3d, graphics, shader
Retro3dpipeline
A minimal example of a custom render pipeline with the Retro3D shader.
Stars: ✭ 354 (-42.53%)
Mutual labels:  unity, unity3d, graphics, shader

Noise Shader Library for Unity

This is a Unity shader library that contains several gradient noise functions.

From webgl-noise written by Stefan Gustavson and Ahima Arts:

https://github.com/ashima/webgl-noise

  • Classic Perlin noise (2D/3D)
  • Periodic Perlin noise (2D/3D)
  • Simplex noise (2D/3D)
  • Analytical derivatives of simplex noise (2D/3D)

From K.jpg's SuperSimplex & FastSimplex repository:

https://github.com/KdotJPG/New-Simplex-Style-Gradient-Noise

  • SuperSimplexNoise (3D)
  • FastSimplexStyleNoise (3D)

How To Install

This package uses the scoped registry feature to resolve package dependencies. Please add the following sections to the manifest file (Packages/manifest.json).

To the scopedRegistries section:

{
  "name": "Keijiro",
  "url": "https://registry.npmjs.com",
  "scopes": [ "jp.keijiro" ]
}

To the dependencies section:

"jp.keijiro.noiseshader": "1.0.0"

After changes, the manifest file should look like below:

{
  "scopedRegistries": [
    {
      "name": "Keijiro",
      "url": "https://registry.npmjs.com",
      "scopes": [ "jp.keijiro" ]
    }
  ],
  "dependencies": {
    "jp.keijiro.noiseshader": "1.0.0",
...
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].