CSharp

Starting Animation from random time frame Unity

Sudeep Acharya
Code snippet to start the animation at different time. Useful when there are many same animation running on screen and you want to make them random. Animator anim = GetComponent<Animator> (); AnimatorStateInfo state = anim.GetCurrentAnimatorStateInfo (0); anim.Play (state.fullPathHash, -1, Random.Range(0f,1f)); You can add this code in Start or Awake function and add to the GameObject with the Animator component.

C# code to shuffle Array

Sudeep Acharya
private T[] ShuffleArray<T>(T[] array) { System.Random r = new System.Random (); for(int i = array.Length; i > 0; i--) { int j = r.Next (i); T k = array [j]; array [j] = array [i - 1]; array [i - 1] = k; } return array; } Example: Int Array int[] intArray = new int[] {1,2,3,4}; intArray = ShuffleArray(intArray); Float Array float[] floatArray = new float[] {1.0f,2.0f,3.0f,4.0f}; floatArray = ShuffleArray(floatArray);