unity3d UGUI教程之-UGUI 實現刮刮卡橡皮擦
有個朋友問我怎麼在Unity中使用 UGUI 實現刮刮卡功能,之前確實沒有做過,但我想了下,應該使用 Shader 可以達到。於是花了點時間實現了下改功能。看下最終效果圖
下面說下實現方式。
這裡我主要使用到一個指令碼和一個Shader。
Shader "Unlit/Transparent Colored Eraser"
{
Properties
{
_MainTex ("Base (RGB), Alpha (A)", 2D) = "white" {}
_RendTex ("Base (RGB), Alpha (A)", 2D) = "white" {}
}
SubShader
{
LOD 200
Tags
{
"Queue" = "Transparent"
"IgnoreProjector" = "True"
"RenderType" = "Transparent"
}
Pass
{
Cull Off
Lighting Off
ZWrite Off
Fog { Mode Off }
Offset -1, -1
ColorMask RGB
AlphaTest Greater .01
Blend SrcAlpha OneMinusSrcAlpha
ColorMaterial AmbientAndDiffuse
CGPROGRAM
#pragma vertex vert
#pragma fragment frag
#include "UnityCG.cginc"
sampler2D _MainTex;
float4 _MainTex_ST;
sampler2D _RendTex;
struct appdata_t
{
float4 vertex : POSITION;
half4 color : COLOR;
float2 texcoord : TEXCOORD0;
};
struct v2f
{
float4 vertex : POSITION;
half4 color : COLOR;
float2 texcoord : TEXCOORD0;
};
v2f vert (appdata_t v)
{
v2f o;
o.vertex = mul(UNITY_MATRIX_MVP, v.vertex);
o.color = v.color;
o.texcoord = v.texcoord;
return o;
}
half4 frag (v2f IN) : COLOR
{
// Sample the texture
half4 col = tex2D(_MainTex, IN.texcoord) * IN.color;
half4 rnd = tex2D(_RendTex, IN.texcoord) * IN.color;
col.a = rnd.a;
return col;
}
ENDCG
}
}
}
using UnityEngine;
using UnityEngine.UI;
using UnityEngine.EventSystems;
using System.Collections;
public class UIEraserTexture : MonoBehaviour ,IPointerDownHandler,IPointerUpHandler{
public RawImage image;
public int brushScale = 4;
Texture2D texRender;
RectTransform mRectTransform;
Canvas canvas;
void Awake(){
mRectTransform = GetComponent<RectTransform> ();
canvas = GameObject.Find("Canvas").GetComponent<Canvas>();
}
void Start () {
texRender = new Texture2D(image.mainTexture.width, image.mainTexture.height,TextureFormat.ARGB32,true);
Reset ();
}
bool isMove = false;
public void OnPointerDown(PointerEventData data){
Debug.Log ("OnPointerDown..."+data.position);
start = ConvertSceneToUI (data.position);
isMove = true;
}
public void OnPointerUp(PointerEventData data){
isMove = false;
Debug.Log ("OnPointerUp..."+data.position);
OnMouseMove (data.position);
start = Vector2.zero;
}
void Update(){
if (isMove) {
OnMouseMove (Input.mousePosition);
}
}
Vector2 start = Vector2.zero;
Vector2 end = Vector2.zero;
Vector2 ConvertSceneToUI(Vector3 posi){
Vector2 postion;
if(RectTransformUtility.ScreenPointToLocalPointInRectangle(mRectTransform , posi, canvas.worldCamera, out postion)){
return postion;
}
return Vector2.zero;
}
void OnMouseMove(Vector2 position)
{
end = ConvertSceneToUI (position);
Draw (new Rect (end.x+texRender.width/2, end.y+texRender.height/2, brushScale, brushScale));
if (start.Equals (Vector2.zero)) {
return;
}
Rect disract = new Rect ((start+end).x/2+texRender.width/2, (start+end).y/2+texRender.height/2, Mathf.Abs (end.x-start.x), Mathf.Abs (end.y-start.y));
for (int x = (int)disract.xMin; x < (int)disract.xMax; x++) {
for (int y = (int)disract.yMin; y < (int)disract.yMax; y++) {
Draw (new Rect (x, y, brushScale, brushScale));
}
}
start = end;
}
void Reset(){
for (int i = 0; i < texRender.width; i++) {
for (int j = 0; j < texRender.height; j++) {
Color color = texRender.GetPixel (i,j);
color.a = 1;
texRender.SetPixel (i,j,color);
}
}
texRender.Apply ();
image.material.SetTexture ("_RendTex",texRender);
}
void Draw(Rect rect){
for (int x = (int)rect.xMin; x < (int)rect.xMax; x++) {
for (int y = (int)rect.yMin; y < (int)rect.yMax; y++) {
if (x < 0 || x > texRender.width || y < 0 || y > texRender.height) {
return;
}
Color color = texRender.GetPixel (x,y);
color.a = 0;
texRender.SetPixel (x,y,color);
}
}
texRender.Apply();
image.material.SetTexture ("_RendTex",texRender);
}
}
自己PS一張遮擋圖吧,我隨便P的。
新建一個材質球,給他選擇上面的Shader,可以不需給它預設紋理,等下在指令碼里賦予。 掛在UGUI的Image上,指令碼也掛在Image上面,RawImage和Image隨便吧,我沒試過。大家可以試下。
相關文章
- 【Unity3D ugui】使用藝術字Unity3DUGUI
- UGUI全面實踐教程UGUI
- UGUI的深度UGUI
- UGUI動畫效果UGUI動畫
- UGUI研究之SpriteUGUI
- canvas 基礎系列(一)之實現抽獎刮刮卡(橡皮擦)Canvas
- STM32 + RTThread + UGUIthreadUGUI
- UGUI_Text的顯示UGUI
- Unity UGUI——Rect Transform包(Anchors)UnityUGUIORM
- Unity3D利用UGUI模擬《海島奇兵》收穫資源的爆炸效果Unity3DUGUI
- UGUI_關卡選項介面UGUI
- [Unity] UGUI優化 - 知識點UnityUGUI優化
- [Unity UGUI]點選和長按UnityUGUI
- UGUI原始碼解析(Toggle和ToggleGroup)UGUI原始碼
- 使用Shader進行UGUI的優化UGUI優化
- 【Unity】UGUI模擬NGUI的UISprite-->LImageUnityUGUINGUI
- Unity 之 UGUI Scroll Rect滾動矩形元件詳解UnityUGUI元件
- NGUI和UGUI改變字型顏色的寫法NGUIUGUI
- UGUI的優點新UI系統四 開源UGUI
- 【UGUI原始碼分析】Unity遮罩之Mask詳細解讀UGUI原始碼Unity遮罩
- 在Unity中用UGUI製作可輸入下拉框UnityUGUI
- 【unity小技巧】實現FPS武器的瞄準放大效果(UGUI實現反向遮罩,全屏遮擋,區域性鏤空效果)UnityUGUI遮罩
- UGUI的優點新UI系統三效率高效果好UGUI
- UGUI的優點新UI系統二 直觀、易於使用UGUI
- Android 自定義控制元件實現刮刮卡效果 真的就只是刮刮卡麼Android控制元件
- 【UGUI原始碼分析】Unity遮罩之RectMask2D詳細解讀UGUI原始碼Unity遮罩
- 關於Unity中的UGUI優化,你可能遇到這些問題UnityUGUI優化
- 如何基於專案人力和管線方案選擇FGUI和UGUIUGUI
- [ToneTuneToolkit][023]UGUI的去色,使UI元素變為灰色UGUI
- 【Unity】【UGUI】對映3D座標到UI上(血條、人物狀態)UnityUGUI3D
- ugui 縮放圖片使圖片的四個角和四邊保持原樣UGUI
- Html5實現移動端、PC端 刮刮卡效果HTML
- 基於canvas剪輯區域功能實現橡皮擦效果Canvas
- CALayer mask屬性實現漸變色Label、刮刮卡效果
- H5活動刮刮卡功能的實現與注意事項H5
- Html5實現移動端、PC端 刮刮卡效果薦HTML
- Unity3D中實現幀同步 - Part 2Unity3D
- 請教DAO和DAOFactory的實現