Guest User

Untitled

a guest
Sep 16th, 2015
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.21 KB | None | 0 0
  1. public class Example : MonoBehaviour
  2. {
  3.     int index = 0;
  4.     int[] array = new int[4];
  5.    
  6.     void Update()
  7.     {
  8.         var value = array[index];
  9.         index = (index + 1) % array.Length;
  10.         // используем value...
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment