Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Maybe write a game on your iPad?

A topic by tnlogy created May 11, 2024 Views: 122 Replies: 1
Viewing posts 1 to 2

I stumbled across this page and made an attempt at using Funnel in the iPhone/iPad app Codea, it was quite easy to get Funnel running! :)

https://talk.codea.io/t/maybe-you-should-make-a-lisp-app/16432

-- Fennel example of a rect drawn where the user touches the screen. 
function setup()
  viewer.mode = FULLSCREEN
  c = fennel.eval([[
(lambda [] 
  (background 0)
  (rectMode CENTER)
  (fill 95 80 233)
  (rect (. CurrentTouch "x")
        (. CurrentTouch "y") 50 50)
)
  ]])
end
function draw()
  c()
end

Jam HostSubmitted(+1)

It shouldn’t be a problem in terms of the rules of the jam, but it will be difficult to get people to rate your game if they can’t run it on their computer.