Answers for "hide component unity"

C#
2

how to hide ui elements unity

GameObject.Find("the object name").SetActive(false);
Posted by: Guest on March-23-2020
2

hide button unity

GameObject button;

void Start() {
    button = GameObject.Find("Button");
}

void ButtonClicked() {
    button.SetActive(false);   
}
Posted by: Guest on April-06-2021
0

unity occulision for hide something

Shader "Custom/PlaneOcclusionShader" { SubShader { Tags { "RenderType"="Opaque" } Tags { "Queue" = "Geometry-1" } ZWrite On ZTest LEqual ColorMask 0 Pass { CGPROGRAM #pragma vertex vert #pragma fragment frag #include "UnityCG.cginc" struct appdata { float4 vertex : POSITION; }; struct v2f { float4 vertex : SV_POSITION; }; v2f vert (appdata v) { v2f o; o.vertex = UnityObjectToClipPos(v.vertex); return o; } fixed4 frag (v2f i) : SV_Target { return fixed4(0.0, 0.0, 0.0, 0.0); } ENDCG } } }
Posted by: Guest on February-14-2021

C# Answers by Framework

Browse Popular Code Answers by Language