Unity Slot Machine Reel

  • A slot machine has 5 reels and displays 3 symbols per reel (no spaces or 'empty' symbols). Payout can occur in a number of ways. A special diamond symbol appears 3 Lucky 7's app.
  • In this tutorial i teach you how to make a simple slot machine in about 7 minutes, with an 8 minute explanation. My form1.cs file - http://pastebin.com/RJpfk.

With Unity, you can easily create both 2D and 3D gambling games, including reel spinners, poker, blackjack and roulette.

Unity slot machine reel combos

Slot Machine Demo

Unity Slot Machine Reel

Three Reel Slots Machine

Classes

Free 3 Reel Slot Machines

  • Reel (Assets/SlotGame/Scripts/Reel.cs)
    It have sprite renderers as childs and update renderers based on internal cursor values(List).
    When ‘ReelStatus’ is set to moving, ‘moveValue’ is increased and cursor values is updated automatically.
    Then renderers is updated using ‘OnRenderUpdated’ event callback function.

  • Machine (Assets/SlotGame/Scripts/Machine.cs)
    It provides a common interface for slot machines and have reels as childs.

CREATE BY

  • Sanghun Lee
  • Email: tkdgns1284@gmail.com
  • Github: https://github.com/bss1284