This commit is contained in:
StudentJW
2026-01-13 15:42:18 +00:00
parent eae7b615d6
commit e6c9c143f1
107 changed files with 22548 additions and 9 deletions

View File

@@ -0,0 +1,16 @@
using UnityEngine;
using System.Collections;
public class SampleInfo : MonoBehaviour
{
void OnGUI(){
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.");
GUILayout.BeginHorizontal();
GUILayout.Label("iTween works with C#, JavaScript and Boo. For full documentation and examples visit:");
if(GUILayout.Button("http://itween.pixelplacement.com")){
Application.OpenURL("http://itween.pixelplacement.com");
}
GUILayout.EndHorizontal();
}
}