I’m looking to develop a couple of interactive touch screen apps for a gallery. They’re very simple, and just involve swiping between pictures, clicking on them, and selecting media to listen to/watch. There’s no animation or anything.
I’ve only used Unity before to do more games-y things. My first reaction was that Unity is not the right software to use for this. I was thinking of looking into options like Figma or Cordova.
But just wondering what everyone else thinks?
I suggest to use HTML5 for such simple application.
You eliminate unnecessary complexity, which Unity will bring to the table.
Oh interesting, thank you! I think I’ll go with that then!
So would the issue with a Unity app mainly be that it would be unnecessarily battery draining & less performant perhaps?
With a web type galery, you deal mainly with a browser. Or whatever what you include in it.
Lots of utilities are already included. Displaying images from the server, is just few lines of HTML code.
Depending on complexity, you may need to go with HTML + JS. Optional ajax and PHP.
You got plenty tools, to make your galery with ready to go templates, if you don’t want to build your own web from scratch. I.e. tons of gallery templates of different kind, ready for deployment. Relatively easy to test and debug, just using web browser.
And of course, compatibility with most modern browsers.
In Unity, you start dealing with C#, fetching data from the server, UI, building app, size of the Unity based app, device compatibility, or deployment on web app and / or some web server. That besides designing actual galery.
You could avoid of course most of web services and store images on the app itself. But then you grow size of app significantly.
That’s really helpful, thanks so much!!