Prefabs for first 2 questions

This commit is contained in:
Mediha Zukic
2017-05-18 22:10:17 +03:00
parent 2a365fa365
commit 115885da90
56 changed files with 25609 additions and 905 deletions

View File

@@ -1,16 +1,19 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class ObjectController : MonoBehaviour {
public RawImage imageCorrect;
public RawImage imageIncorrect;
// Use this for initialization
void Start () {
imageCorrect.enabled = false;
imageIncorrect.enabled = false;
}
// Update is called once per frame
void Update () {
}
}