New Version 1.6

New 125 balls & powerups.
Improved graphics.
This commit is contained in:
SkunkStudios 2025-05-07 06:18:40 +07:00
parent b35433ae45
commit 71779ef7ac
9413 changed files with 193360 additions and 264803 deletions

View file

@ -0,0 +1,17 @@
// Implements Edge Detection using a Roberts cross filter.
using UnityEngine;
[ExecuteInEditMode]
[AddComponentMenu("Image Effects/Edge Detection (Color)")]
public class EdgeDetectEffect : ImageEffectBase
{
public float threshold = 0.2F;
// Called by camera to apply image effect
void OnRenderImage (RenderTexture source, RenderTexture destination)
{
material.SetFloat ("_Treshold", threshold * threshold);
Graphics.Blit (source, destination, material);
}
}