├── .gitignore ├── LICENSE ├── README.md ├── demo.gif ├── fonts └── Symtext.ttf ├── icon.png ├── project.godot ├── scenes ├── Main.gd ├── Main.tscn ├── SlotMachine.gd ├── SlotTile.gd └── SlotTile.tscn └── sprites ├── BackgroundDarkGreen.png └── TileIcons ├── Devil.jpg ├── bat.png ├── cactus.png ├── card-exchange.png ├── card-joker.png ├── chess-knight.png ├── coffee-cup.png ├── companion-cube.png ├── cycling.png ├── dandelion-flower.png ├── eight-ball.png ├── hummingbird.png ├── kiwi-bird.png ├── owl.png ├── pc.png ├── pie-slice.png ├── plastic-duck.png ├── raven.png ├── rolling-dices.png ├── skull-crossed-bones.png ├── super-mushroom.png ├── tic-tac-toe.png ├── trojan-horse.png └── udder.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CadanoX/Godot-Slot-Machine/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CadanoX/Godot-Slot-Machine/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CadanoX/Godot-Slot-Machine/HEAD/README.md -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CadanoX/Godot-Slot-Machine/HEAD/demo.gif -------------------------------------------------------------------------------- /fonts/Symtext.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CadanoX/Godot-Slot-Machine/HEAD/fonts/Symtext.ttf -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CadanoX/Godot-Slot-Machine/HEAD/icon.png -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CadanoX/Godot-Slot-Machine/HEAD/project.godot -------------------------------------------------------------------------------- /scenes/Main.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CadanoX/Godot-Slot-Machine/HEAD/scenes/Main.gd -------------------------------------------------------------------------------- /scenes/Main.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CadanoX/Godot-Slot-Machine/HEAD/scenes/Main.tscn -------------------------------------------------------------------------------- /scenes/SlotMachine.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CadanoX/Godot-Slot-Machine/HEAD/scenes/SlotMachine.gd -------------------------------------------------------------------------------- /scenes/SlotTile.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CadanoX/Godot-Slot-Machine/HEAD/scenes/SlotTile.gd -------------------------------------------------------------------------------- /scenes/SlotTile.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CadanoX/Godot-Slot-Machine/HEAD/scenes/SlotTile.tscn -------------------------------------------------------------------------------- /sprites/BackgroundDarkGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CadanoX/Godot-Slot-Machine/HEAD/sprites/BackgroundDarkGreen.png -------------------------------------------------------------------------------- /sprites/TileIcons/Devil.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CadanoX/Godot-Slot-Machine/HEAD/sprites/TileIcons/Devil.jpg -------------------------------------------------------------------------------- /sprites/TileIcons/bat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CadanoX/Godot-Slot-Machine/HEAD/sprites/TileIcons/bat.png -------------------------------------------------------------------------------- /sprites/TileIcons/cactus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CadanoX/Godot-Slot-Machine/HEAD/sprites/TileIcons/cactus.png -------------------------------------------------------------------------------- /sprites/TileIcons/card-exchange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CadanoX/Godot-Slot-Machine/HEAD/sprites/TileIcons/card-exchange.png -------------------------------------------------------------------------------- /sprites/TileIcons/card-joker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CadanoX/Godot-Slot-Machine/HEAD/sprites/TileIcons/card-joker.png -------------------------------------------------------------------------------- /sprites/TileIcons/chess-knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CadanoX/Godot-Slot-Machine/HEAD/sprites/TileIcons/chess-knight.png -------------------------------------------------------------------------------- /sprites/TileIcons/coffee-cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CadanoX/Godot-Slot-Machine/HEAD/sprites/TileIcons/coffee-cup.png -------------------------------------------------------------------------------- /sprites/TileIcons/companion-cube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CadanoX/Godot-Slot-Machine/HEAD/sprites/TileIcons/companion-cube.png -------------------------------------------------------------------------------- /sprites/TileIcons/cycling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CadanoX/Godot-Slot-Machine/HEAD/sprites/TileIcons/cycling.png -------------------------------------------------------------------------------- /sprites/TileIcons/dandelion-flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CadanoX/Godot-Slot-Machine/HEAD/sprites/TileIcons/dandelion-flower.png -------------------------------------------------------------------------------- /sprites/TileIcons/eight-ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CadanoX/Godot-Slot-Machine/HEAD/sprites/TileIcons/eight-ball.png -------------------------------------------------------------------------------- /sprites/TileIcons/hummingbird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CadanoX/Godot-Slot-Machine/HEAD/sprites/TileIcons/hummingbird.png -------------------------------------------------------------------------------- /sprites/TileIcons/kiwi-bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CadanoX/Godot-Slot-Machine/HEAD/sprites/TileIcons/kiwi-bird.png -------------------------------------------------------------------------------- /sprites/TileIcons/owl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CadanoX/Godot-Slot-Machine/HEAD/sprites/TileIcons/owl.png -------------------------------------------------------------------------------- /sprites/TileIcons/pc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CadanoX/Godot-Slot-Machine/HEAD/sprites/TileIcons/pc.png -------------------------------------------------------------------------------- /sprites/TileIcons/pie-slice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CadanoX/Godot-Slot-Machine/HEAD/sprites/TileIcons/pie-slice.png -------------------------------------------------------------------------------- /sprites/TileIcons/plastic-duck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CadanoX/Godot-Slot-Machine/HEAD/sprites/TileIcons/plastic-duck.png -------------------------------------------------------------------------------- /sprites/TileIcons/raven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CadanoX/Godot-Slot-Machine/HEAD/sprites/TileIcons/raven.png -------------------------------------------------------------------------------- /sprites/TileIcons/rolling-dices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CadanoX/Godot-Slot-Machine/HEAD/sprites/TileIcons/rolling-dices.png -------------------------------------------------------------------------------- /sprites/TileIcons/skull-crossed-bones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CadanoX/Godot-Slot-Machine/HEAD/sprites/TileIcons/skull-crossed-bones.png -------------------------------------------------------------------------------- /sprites/TileIcons/super-mushroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CadanoX/Godot-Slot-Machine/HEAD/sprites/TileIcons/super-mushroom.png -------------------------------------------------------------------------------- /sprites/TileIcons/tic-tac-toe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CadanoX/Godot-Slot-Machine/HEAD/sprites/TileIcons/tic-tac-toe.png -------------------------------------------------------------------------------- /sprites/TileIcons/trojan-horse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CadanoX/Godot-Slot-Machine/HEAD/sprites/TileIcons/trojan-horse.png -------------------------------------------------------------------------------- /sprites/TileIcons/udder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CadanoX/Godot-Slot-Machine/HEAD/sprites/TileIcons/udder.png --------------------------------------------------------------------------------