This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
using Unity.Mathematics; | |
using Unity.Jobs; | |
using Unity.Burst; | |
using Unity.Collections; | |
public class BoidSimulator : IDisposable |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Shader "Toon/HalftoneToon" | |
{ | |
Properties | |
{ | |
_ColorHighlight("Color Highlight", Color) = (1,1,1,1) | |
_RangeHighlight("Range Highlight", Range(0,1)) = 0.8 | |
_Color("Color", Color) = (0.9, 0.9, 0.9, 1) | |
_ColorShaded("Color Shaded", Color) = (0.6, 0.6, 0.6, 1) | |
_RangeShaded("Range Shaded", Range(0,1)) = 0.5 | |
_ColorReflected("Color Reflected", Color) = (0.7, 0.7, 0.7, 1) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
using UnityEditor; | |
public class ObjectDuplicator : MonoBehaviour | |
{ | |
public static void DuplicateMultipleObject(GameObject[] targetObjects, int count, Vector3 positionOffset) | |
{ | |
for (int i = 0; i < count; i++) | |
{ | |
foreach (var go in targetObjects) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Shader "GlowingEfx" | |
{ | |
Properties | |
{ | |
_Color("Color", color) = (1,1,1,1) | |
_GlowCenter("Glow Center", Vector) = (0,0,0) | |
_GlowSpread("Glow Spread", float) = 0 | |
_GlowStrength("Glow Strength", float) = 1 | |
_Refraction("Refraction", float) = 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections.Generic; | |
using UnityEngine.Rendering.Universal; | |
using UnityEngine.Rendering; | |
using UnityEngine.Scripting.APIUpdating; | |
namespace UnityEngine.Experimental.Rendering.Universal | |
{ | |
[MovedFrom("UnityEngine.Experimental.Rendering.LWRP")]public enum RenderQueueType | |
{ | |
Opaque, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections.Generic; | |
using UnityEngine.Rendering.Universal; | |
using UnityEngine.Rendering; | |
using UnityEngine.Scripting.APIUpdating; | |
namespace UnityEngine.Experimental.Rendering.Universal | |
{ | |
[MovedFrom("UnityEngine.Experimental.Rendering.LWRP")] public class RenderObjectsPass : ScriptableRenderPass | |
{ | |
RenderQueueType renderQueueType; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
using UnityEngine.Rendering; | |
using UnityEngine.Rendering.Universal; | |
namespace UnityEngine.Experimental.Rendering.Universal { | |
public class MyRendererFeature : ScriptableRendererFeature { | |
[System.Serializable] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine.Rendering; | |
using UnityEngine.Rendering.Universal; | |
namespace UnityEngine.Experimental.Rendering.Universal { | |
public class MyRenderPass :ScriptableRenderPass { | |
string m_profilerTag; | |
Material m_blitMaterial; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://github.com/Unity-Technologies/UniversalRenderingExamples/blob/master/Assets/Scripts/Runtime/RenderPasses/Blit.cshttps://samdriver.xyz/articles/scriptableRender.html | |
// https://samdriver.xyz/articles/scriptableRender.html | |
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
using UnityEngine.Rendering.Universal; | |
namespace UnityEngine.Experimental.Rendering.Universal { | |
// https://github.com/Unity-Technologies/UniversalRenderingExamples/blob/master/Assets/Scripts/Runtime/RenderPasses/Blit.cs |
NewerOlder