IMHOTEP Framework
 All Classes Namespaces Functions Variables Enumerations Enumerator Properties Pages
Sphere.cs
1 using UnityEngine;
2 using System.Collections;
3 
4 public class Sphere : MonoBehaviour {
5 
6  public GameObject logo;
7 
8  public void OnEnable()
9  {
10  //logo.SetActive (false);
11  }
12  public void activateLogo()
13  {
14  logo.GetComponent<MeshRenderer> ().material.SetFloat ("_EaseInAmount", 0f);
15  logo.SetActive (true);
16  }
17 
18 }
Definition: Sphere.cs:4