http://argos.vu/ArgosVu_VR_Lab.apk
void OnEnable() {
StartCoroutine(OnEnableCoroutine());
}
IEnumerator OnEnableCoroutine() {
// yield here
}

using UnityEngine;
using System.Collections;
public class ExampleClass : MonoBehaviour {
void Example() {
print(Application.persistentDataPath);
}
}




