All Projects → EsProgram → Inkpainter

EsProgram / Inkpainter

Licence: mit
Texture-Paint on Unity.

Programming Languages

csharp
926 projects

Projects that are alternatives of or similar to Inkpainter

Unitypcss
Nvidia's PCSS soft shadow algorithm implemented in Unity
Stars: ✭ 533 (-37.22%)
Mutual labels:  unity, shader, shaderlab
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 (-46.41%)
Mutual labels:  unity, shader, shaderlab
Lowpolyshaders
Unity shaders optimized for Low Poly models.
Stars: ✭ 157 (-81.51%)
Mutual labels:  unity, shader, shaderlab
Lwrpshaders
A collection of high customizable unlit shaders for Lightweight Render Pipeline
Stars: ✭ 125 (-85.28%)
Mutual labels:  unity, shader, shaderlab
Depthinverseprojection
An example showing how to inverse-project depth samples into the view/world space in Unity.
Stars: ✭ 296 (-65.14%)
Mutual labels:  unity, shader, shaderlab
Unityurp Billboardlensflareshader
(1)Add a new Quad GameObject (2)Use this shader (3)Done! Now you have billboard lens flare shader for URP!
Stars: ✭ 140 (-83.51%)
Mutual labels:  unity, shader, shaderlab
Isaura
An attempt at making a aura thingie with a isoline shader.
Stars: ✭ 187 (-77.97%)
Mutual labels:  unity, shader, shaderlab
X Postprocessing Library
Unity Post Processing Stack Library | Unity引擎的高品质后处理库
Stars: ✭ 1,079 (+27.09%)
Mutual labels:  unity, shader, shaderlab
Unity Shaders
✨ Shader demo - More than 300 examples
Stars: ✭ 198 (-76.68%)
Mutual labels:  unity, shader, shaderlab
Unitywatersurface
Water Surface Simulation using CutomRenderTexture in Unity 2017.1
Stars: ✭ 190 (-77.62%)
Mutual labels:  unity, shader, shaderlab
Temporalreprojectionexample
Temporal reprojection example for Unity
Stars: ✭ 82 (-90.34%)
Mutual labels:  unity, shader, shaderlab
Unity Ui Rounded Corners
This components and shaders allows you to add rounded corners to UI elements!
Stars: ✭ 307 (-63.84%)
Mutual labels:  unity, shader, shaderlab
Uchromakey
Chroma key shader asset for Unity
Stars: ✭ 58 (-93.17%)
Mutual labels:  unity, shader, shaderlab
Unityscreenspaceboolean
Screen Space Boolean Implementation for Unity.
Stars: ✭ 150 (-82.33%)
Mutual labels:  unity, shader, shaderlab
Nnao
Neural Network Ambien Occlusion based on http://theorangeduck.com/page/neural-network-ambient-occlusion
Stars: ✭ 57 (-93.29%)
Mutual labels:  unity, shader, shaderlab
Nvjob Water Shader Simple And Fast
#NVJOB Simple Water Shaders. Free Unity Asset.
Stars: ✭ 172 (-79.74%)
Mutual labels:  unity, shader, shaderlab
Packedrgbmshader
32-bit packed color format with RGBM encoding for shader use
Stars: ✭ 39 (-95.41%)
Mutual labels:  unity, shader, shaderlab
Unity Grabsquares Effect
Unity GrabSquares Effect
Stars: ✭ 39 (-95.41%)
Mutual labels:  unity, shader, shaderlab
Awesome Unity Shader
⛵ 关于炫酷的Unity3D Shader | About Cool Unity3D Shaders
Stars: ✭ 2,658 (+213.07%)
Mutual labels:  unity, shader, shaderlab
Configurableshaders
Showing off the power of shader properties in Unity
Stars: ✭ 304 (-64.19%)
Mutual labels:  unity, shader, shaderlab


InkPainter

GitHub license release PRs Welcome

GitHub issues GitHub forks GitHub stars Twitter

This asset allows you to Texture-Paint on Unity. Selling at Asset Store.

Document is here.

How to use

Attach a "InkCanvas" to the object you want to paint and call the Paint method from any script.

ex)

using Es.InkPainter;

public class SamplePainter : MonoBehaviour
{
	[SerializeField]
	private Brush brush;

	private void Update()
	{
		if(Input.GetMouseButton(0))
		{
			var ray = Camera.main.ScreenPointToRay(Input.mousePosition);
			RaycastHit hitInfo;
			if(Physics.Raycast(ray, out hitInfo))
			{
				var paintObject = hitInfo.transform.GetComponent<InkCanvas>();
				if(paintObject != null)
					paintObject.Paint(brush, hitInfo);
			}
		}
	}
}

See documentation and movies for more details.

Extended Asset

It is an asset of another repository using InkPainter.

Movies

Liquid paint affected by normal map.

InkPainter demo movie(Click image).


InkPainter rainy day camera effect(Click image).


InkPainter fluid paint setup(Click image).


InkPainter simple paint setup(Click image).


InkPainter setup(Click image).


InkPainter how to use(Click image).

Sponsor

The MIT License

Copyright (c) 2017 Es_Program

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