All Projects → AdultLink → Spheredissolve

AdultLink / Spheredissolve

Licence: mit
Customizable procedural spherical dissolve shader for Unity3D, for all your customizable procedural spherical dissolve needs!

Programming Languages

procedural
45 projects

Projects that are alternatives of or similar to Spheredissolve

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 (+129.58%)
Mutual labels:  unity, unity3d, game-development, gamedev, game-dev, graphics, shaders, shader, material
Rimlight
Customizable rimlight shader for Unity that includes pulsation and noise scrolling. Give your scenes that extra oomph!
Stars: ✭ 170 (-45.34%)
Mutual labels:  unity, unity3d, game-development, gamedev, game-dev, graphics, shaders, shader, material
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 (+69.77%)
Mutual labels:  unity, unity3d, game-development, gamedev, graphics, shaders, shader, material
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 (+3661.41%)
Mutual labels:  unity, unity3d, game-development, gamedev, graphics, shaders, shader
Holoshield
Highly customizable sci-fi shield / force field shader for Unity3D. Allows you to set edge power & color, inner texture scrolling, waviness, scale pulsation and procedural intensity noise. Implements tessellation for low-poly base meshes.
Stars: ✭ 401 (+28.94%)
Mutual labels:  unity, unity3d, gamedev, game-dev, graphics, shaders, material
Verticaldissolve
Procedural vertical dissolve shader. Highly customizable. Tweak edge color, noisiness & waviness, rim light, emission scrolling and more.
Stars: ✭ 434 (+39.55%)
Mutual labels:  unity, unity3d, game-development, gamedev, graphics, shaders, material
Hologramshader
✏️ Test of an hologram material made in Unity.
Stars: ✭ 684 (+119.94%)
Mutual labels:  unity, unity3d, graphics, shaders, shader, material
Unity Shaders
✨ Shader demo - More than 300 examples
Stars: ✭ 198 (-36.33%)
Mutual labels:  unity, unity3d, game-development, gamedev, shaders, shader
Unity Script Collection
A maintained collection of useful & free unity scripts / library's / plugins and extensions
Stars: ✭ 3,640 (+1070.42%)
Mutual labels:  unity, unity3d, shaders, shader, material
Unity Frosted Glass
❄️ Test of a frosted glass material in Unity.
Stars: ✭ 506 (+62.7%)
Mutual labels:  unity, unity3d, shaders, shader, material
Alloy
Alloy physical shader framework for Unity.
Stars: ✭ 244 (-21.54%)
Mutual labels:  unity, unity3d, graphics, shaders
Swissarmylib
Collection of helpful utilities we use in our Unity projects.
Stars: ✭ 154 (-50.48%)
Mutual labels:  unity, unity3d, game-development, gamedev
Unity Texture Curve
✏️ Example showing how to bake an AnimatedCurve into a Texture and use it in a shader.
Stars: ✭ 149 (-52.09%)
Mutual labels:  unity, unity3d, shaders, shader
Noiseball3
A Unity example that shows how to use the new implementation of DrawProcedural.
Stars: ✭ 147 (-52.73%)
Mutual labels:  unity, unity3d, graphics, shader
Cloner
An example of use of procedural instancing.
Stars: ✭ 260 (-16.4%)
Mutual labels:  unity, unity3d, graphics, shaders
Computestochasticreflections
Compute Stochastic Screen Space Reflections for unity post processing
Stars: ✭ 163 (-47.59%)
Mutual labels:  unity, unity3d, graphics, shader
Videoplayereffects
Experimental special effects for VideoPlayer (Unity 5.6 new feature)
Stars: ✭ 252 (-18.97%)
Mutual labels:  unity, unity3d, graphics, shader
Lwrpshaders
A collection of high customizable unlit shaders for Lightweight Render Pipeline
Stars: ✭ 125 (-59.81%)
Mutual labels:  unity, unity3d, graphics, shader
Nvjob Water Shader Simple And Fast
#NVJOB Simple Water Shaders. Free Unity Asset.
Stars: ✭ 172 (-44.69%)
Mutual labels:  unity, unity3d, shaders, shader
Noahgameframe
A fast, scalable, distributed game server engine/framework for C++, include the actor library, network library, can be used as a real time multiplayer game engine ( MMO RPG/MOBA ), which support C#/Lua script/ Unity3d, Cocos2dx and plan to support Unreal.
Stars: ✭ 3,258 (+947.59%)
Mutual labels:  unity, unity3d, game-development, gamedev

SphereDissolve Follow License Donate Twitter Follow

IntroImage

This shader works in a similar way to a typical dissolve shader, albeit with two big differences:

  • It makes use of 3D noise instead of a texture, which means:

    • We don't need to care about UVs and seams.
    • The effect is consistent among different objects. They are all affected equally. Quality is also scale-independent.
    • It is a more computationally expensive method.
  • The dissolve effect follows a spherical shape, meaning it can be controlled by setting the center and radius of a virtual sphere. This opens up a lot of possibilities.

The shader can be edited through Amplify Shader Editor and contributions to the project are always welcome!


Project developed using Unity 2017.4.8f1. Please use this version if you are planning on contributing. You can work on your own branch and send a pull request with your changes.


You can also just download a unitypackage from the releases tab and easily import everything to your project. This will not download the media folder.

Disclaimer: The scripts controlling the behavior of the examples provided are not optimized in any way and should only be taken as quick & dirty examples.

Free packages used:

Table of contents

  1. Getting started
  2. Parameter list
  3. Further reading
  4. Donate
  5. License

Getting started

Check the examples included in the project!

These shader comes in two versions; SphereDissolve (cutout) and SphereDissolve. The former is the one we want to use if we just want to dissolve a mesh, while the latter allows us to dissolve into a secondary texture set.

The following parameters allow us to customize the effect (cutout version):

Position defines the center of our spherical mask, while Radius defines its radius. Noise scale and Noise speed specify the look of the border. The lower the scale, the rounder it will be. If we want the border to be completely static we should set the speed to (0,0,0,0).

By activating the Invert toggle, we can invert the dissolve mask, which means the only visible area is now the one within the radius.

Lastly, as with the standard shader, we can specify textures for the most common channels. In the case of the "standard" version, parameters are the same, except we have two texture sets. This version of the shader can be used in a clever way to simulate a variety of effects!

Parameter list

"Standard" version - Click to expand


//MAIN SETTINGS
_Position
_Radius
_Invert

//BORDER SETTINGS
_Bordercolor
_Borderradius
_Bordernoisescale
_Noisespeed

//TEXTURE SET1 SETTINGS
_Set1_albedo
_Set1_albedo_tint
_Set1_normal
_Set1_emission
_Set1_emission_tint
_Set1_metallic
_Set1_metallic_multiplier
_Set1_smoothness
_Set1_tiling
_Set1_offset

//TEXTURE SET2 SETTINGS
_Set2_albedo
_Set2_albedo_tint
_Set2_normal
_Set2_emission
_Set2_emission_tint
_Set2_metallic
_Set2_metallic_multiplier
_Set2_smoothness
_Set2_tiling
_Set2_offset

"Cutout" version - Click to expand


//MAIN SETTINGS
_Position
_Radius
_Invert

//BORDER SETTINGS
_Bordercolor
_Borderradius
_Bordernoisescale
_Noisespeed

//TEXTURE SETTINGS
_Albedo
_Albedo_tint
_Normal
_Emission
_Emission_tint
_Metallic
_Metallic_multiplier
_Smoothness
_Tiling
_Offset

Further reading

Donate Donate

This piece of software is offered for free because I believe the gamedev community can benefit from it, and it should not be behind a paywall. I learned from the community, and now I am giving back.

If you would like to support me, donations are very much appreciated, since they help me create more software that I can offer for free.

Thank you very much :)

License

MIT License

Copyright (c) 2018 Guillermo Angel

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

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