Search Unity

Match Three Or More Version 1.0 Release!

Discussion in 'Assets and Asset Store' started by Recalc, Jul 10, 2018.

  1. Recalc

    Recalc

    Joined:
    Jun 25, 2013
    Posts:
    14
    This project has a fun menu screen, particles, player icon selection, and scalable board sizes!

    All code scripts are found in TicTacToe/Assets/Scripts

    Features :

    - Players can select from four different tokens to play Tic Tac Toe with, but cannot share the same token. Players cannot proceed unless both have selected their player pieces.

    - Board sizes of 3x3 and 4x4 are available for the player to choose from, but it defaults to 3x3 if nothing is selected. The boards are generated from code using tile prefabs - allowing for any n x n game board to be generated!

    - Win conditions are determined by the checking and updating of a one dimensional array that contains an index for each possible winning combination. Only requires one for loop. The formulas for solutions also scale to board size, so once again, any board of n x n can be generated and made playable!

    - Moves are stored in a List of custom GameData class objects. ManagerScript.cs contains the class at the bottom - with the storing logics happening in the Click()

    Screenshots:





    It can be found here! :

    https://www.assetstore.unity3d.com/#!/content/121110

    Let me know if you have any suggestions, questions, or concerns.