Subversion Repository Public Repository

Nextrek

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
using UnityEngine;
using System.Collections.Generic;

/// <summary>
/// Attach this script to any object that has idle animations.
/// It's expected that the main idle loop animation is called "idle", and idle
/// break animations all begin with "idle" (ex: idleStretch, idleYawn, etc).
/// The script will place the idle loop animation on layer 0, and breaks on layer 1.
/// </summary>

[AddComponentMenu("NGUI/Examples/Play Idle Animations")]
public class PlayIdleAnimations : MonoBehaviour
{
	Animation mAnim;
	AnimationClip mIdle;
	List<AnimationClip> mBreaks = new List<AnimationClip>();
	float mNextBreak = 0f;
	int mLastIndex = 0;

	/// <summary>
	/// Find all idle animations.
	/// </summary>

	void Start ()
	{
		mAnim = GetComponentInChildren<Animation>();
		
		if (mAnim == null)
		{
			Debug.LogWarning(NGUITools.GetHierarchy(gameObject) + " has no Animation component");
			Destroy(this);
		}
		else
		{
			foreach (AnimationState state in mAnim)
			{
				if (state.clip.name == "idle")
				{
					state.layer = 0;
					mIdle = state.clip;
					mAnim.Play(mIdle.name);
				}
				else if (state.clip.name.StartsWith("idle"))
				{
					state.layer = 1;
					mBreaks.Add(state.clip);
				}
			}
		
			// No idle breaks found -- this script is unnecessary
			if (mBreaks.Count == 0) Destroy(this);
		}
	}

	/// <summary>
	/// If it's time to play a new idle break animation, do so.
	/// </summary>

	void Update ()
	{
		if (mNextBreak < Time.time)
		{
			if (mBreaks.Count == 1)
			{
				// Only one break animation
				AnimationClip clip = mBreaks[0];
				mNextBreak = Time.time + clip.length + Random.Range(5f, 15f);
				mAnim.CrossFade(clip.name);
			}
			else
			{
				int index = Random.Range(0, mBreaks.Count - 1);
				
				// Never choose the same animation twice in a row
				if (mLastIndex == index)
				{
					++index;
					if (index >= mBreaks.Count) index = 0;
				}

				mLastIndex = index;
				AnimationClip clip = mBreaks[index];
				mNextBreak = Time.time + clip.length + Random.Range(2f, 8f);
				mAnim.CrossFade(clip.name);
			}
		}
	}
}

Commits for Nextrek/SpaceCrew/SpaceCrew/Assets/NGUI/Examples/Scripts/Other/PlayIdleAnimations.cs

Diff revisions: vs.
Revision Author Commited Message
83 FMMortaroli picture FMMortaroli Tue 13 May, 2014 11:32:51 +0000