Skip to main content

On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(+3)

Very informative zine; I learned many things I didn't previously know about how the games industry handles localization!

Including the option to export a PDF is a great feature! One possible refinement would be to temporarily hide the navigation buttons while taking screenshots of each card, like so:

 images:each card in range deck.cards
  w:if card.index
   card.widgets@("button1","button2","button3")
  end
  w..show:"none"
  i:pdf.flatten[app.render[card] deck]
  w..show:"solid"
  i
 end

 

(+2)

Thanks!

And oh, this bit of code is interesting. I thought about hiding the buttons but using a more crude approach, and then kinda gave up because the code would end up too bloated. This makes things way more elegant, so I'll give it a go later. I want to keep the buttons on the first page, and I think I know how I could do that using your suggestion (if it doesn't work, then I'll pester at the Lil programming questions post haha).