SampleInfo.cs 562 B

12345678910111213141516
  1. using UnityEngine;
  2. using System.Collections;
  3. public class SampleInfo : MonoBehaviour
  4. {
  5. void OnGUI(){
  6. GUILayout.Label("iTween can spin, shake, punch, move, handle audio, fade color and transparency \nand much more with each task needing only one line of code.");
  7. GUILayout.BeginHorizontal();
  8. GUILayout.Label("iTween works with C#, JavaScript and Boo. For full documentation and examples visit:");
  9. if(GUILayout.Button("http://itween.pixelplacement.com")){
  10. Application.OpenURL("http://itween.pixelplacement.com");
  11. }
  12. GUILayout.EndHorizontal();
  13. }
  14. }