this post was submitted on 27 Sep 2024
898 points (97.6% liked)
Games
32545 readers
1606 users here now
Welcome to the largest gaming community on Lemmy! Discussion for all kinds of games. Video games, tabletop games, card games etc.
Weekly Threads:
Rules:
-
Submissions have to be related to games
-
No bigotry or harassment, be civil
-
No excessive self-promotion
-
Stay on-topic; no memes, funny videos, giveaways, reposts, or low-effort posts
-
Mark Spoilers and NSFW
-
No linking to piracy
More information about the community rules can be found here.
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
My experience is with iPhone (yeah yeah boo Apple).
Most of how I learned was just digging through Apple’s documentation, focusing on one goal at a time. How do I draw stuff to the screen? How do I handle touch inputs? How do I use the built in UI elements? How do I play sounds? How do I get GPS data? Things like that. I’d usually have an idea of a specific mini-project that would make use of a specific new tool.
Note that I already had some programming experience (although it wasn’t much) before I started teaching myself this way.
Here’s Apple’s website: https://developer.apple.com/develop/
Just start by downloading XCode and playing with one of their sample projects. SpriteKit is particularly easy to get started with and there’s a sample project for it. (I’m assuming you want to make something like a game. If you want to make more of a utility app, look up SwiftUI).
If you aren’t an ~~iPhone user~~ “Apple fanboy”, you can try this: https://developer.android.com/courses
Also many game engines (e.g. Godot, Unreal, ~~Unity~~) have support for both iOS and Android.
Thank you man/ma'am! Bunches!