public override void Update() { var touch = new TouchSensor(input, gameObjectFinder); if (touch.insideSprite(Camera.main, buyMusic)) { Application.OpenURL("http://itunes.apple.com/us/album/same-not-same-ep/id533347009"); } else if (touch.insideSprite(Camera.main, news)) { Application.OpenURL("http://themakingofthemakingof.com"); } else if (touch.hasTaps()) { endScene(); } if (cycle_title.Complete()) { animateStartButton(); } cycle_title.Update(Time.time); }