Level Unlock Help
I'm new to unity and I'm trying to figure a way to unlock the levels by hiding a image every time you win a level.
When my player touches a box collider it takes you to the, "win scene".-
using System.Collections; using System.Collections.Generic; using UnityEngine;
public class Win : MonoBehaviour {
void OnTriggerEnter(Collider other){
if (other.tag == "Player")
{
Application.LoadLevel("Win");
}
} }
I'm struggling to find a way to disappear the image when you win a level. Any help is appreciated, Thank you
![alt text][1] [1]: /storage/temp/97068-pic-002.png
Your answer
Follow this Question
Related Questions
I want to freeze fp player , animation then starts , then unfreeze the character . 0 Answers
Can't trigger animation on Collider2D 0 Answers
OnTriggerEnter2D not working 1 Answer
C# Activate Object on Collision with tag not working. 1 Answer
Pipe Game ... I have to trace water from source to destination 2 Answers