iTweenEventSample.cs 240 B

1234567891011121314
  1. using UnityEngine;
  2. using System.Collections;
  3. public class iTweenEventSample : MonoBehaviour {
  4. public void OnStartEvent() {
  5. Debug.Log( "Tween Started!" );
  6. }
  7. public void OnCompleteEvent() {
  8. Debug.Log( "Tween Completed!" );
  9. }
  10. }