void Start()
    {
        specialObjectScript = GetComponent <SpecialPlayingObject>();
        itemId = GetInstanceID();
        int ind = Random.Range(0, 6);

        adjacentItems = new PlayingObject[4];
    }
Beispiel #2
0
    void Start()
    {
        specialObjectScript = GetComponent<SpecialPlayingObject>();
        itemId = GetInstanceID();
        int ind = Random.Range(0, 6);

        adjacentItems = new PlayingObject[4];
    }