as i introduced my self in "what are you working on" i came across some issues and need your help or advices
First at all, the actual state of my project:
i allready got a menu with moving intro picture, the possibility of pressing any key to get into my game. there will be waiting an unifinished game because i need to do:
-a tile-based map for putting my cards onto it. i am searching for tutorials to create a map where i create tiles for my cards... ( i dont know if any of you know the game. u have to create small towns with landscapes in each corner of the card, thats why i need a tile-based map with changeable content in every single tile.
- 90 different cards : i think i should work with tablets for each card right?
- 2 dices with number and images. i allready included lovedice from the forum, but my dice went insane and doesnt stop rolling over and over again this is my code:
Code: Select all
local Dice = require("lovedice")
local default_die = Dice.newDie(DEFAULT_SIDES)
love.graphics.printf("You rolled a " .. Dice.roll(), 0, 350,love.graphics.getWidth(), "center")
So far,
TurtleS