Ask HN: 9-yo son wants to build a game, I'm lost. What can I do?
351–360 of 391 posts
Re: Ask HN: 9-yo son wants to build a game, I'm lost. What can I do?
#352https://github.com/tldraw/make-real
This is a really fun project that uses GPT4 and TLDraw. People have made games with it- it’s super WYSIWYG and you can draw the state machines as a diagram with boxes and arrows, the UI directly, etc. I would have loved to have this as a kid.
Re: Ask HN: 9-yo son wants to build a game, I'm lost. What can I do?
#3531. Take his notes and make a basic game design doc. If its 3d, focus more on what the main character can do than anything else.
2. From the design doc, see if theres any free or free adjacent unity plugins to do what he wants.
2a. If he tries out a feature and he doesnt like it, send him back to the design doc, seeing as thats what he sees his role as.
3. Make yourself more of a systems integrator. You will probably need to learn some stuff, like blender scene importing, and basic game logic. But its pretty easy these days to knock something at least fun to demo together from the unity store.
Re: Ask HN: 9-yo son wants to build a game, I'm lost. What can I do?
#354Earlier quoted context omitted.
Strong +1 for PICO-8. My nine year old kid got right into it.
This and TIC-80 recommended bellow really feel more like a fun challenge for a programmer than a creative tool for a kid. Was it the first time your kid was exposed to any kind of programming?
Re: Ask HN: 9-yo son wants to build a game, I'm lost. What can I do?
#355Re: Ask HN: 9-yo son wants to build a game, I'm lost. What can I do?
#356Re: Ask HN: 9-yo son wants to build a game, I'm lost. What can I do?
#357Re: Ask HN: 9-yo son wants to build a game, I'm lost. What can I do?
#358I am not a game dev but there are a heap of YouTube/web based tutorials, free models and everything out there for you to get started with!!!!!
Good luck and enjoy the time with your kid
Re: Ask HN: 9-yo son wants to build a game, I'm lost. What can I do?
#359Understand that you're not going to finish what you start. Do things that are fun. Keep a notebook of ideas. Talk about plans and what you want do. Spend time with him. Even if almost none if it ever makes it into code, the imagination part will be going wild. Look at what he's really doing. He doesn't want to CODE. He wants to make a game. Like every kid. Emphasize the creative part just like he wants. Do things on…
Re: Ask HN: 9-yo son wants to build a game, I'm lost. What can I do?
#360Godot [1] is a very nice game engine. There's a game on Itch.io that teaches the scripting language it uses [2], and a ton of great tutorials on YouTube for beginners and experts alike. [1]: https://godotengine.org/ [2]: https://gdquest.itch.io/learn-godot-gdscript
I played around a bit with Godot with one of my kids around that age some years ago and I think it was good. We actually started with Scratch, but that quickly got annoying for both of us, with all the dragging around of boxes on the screen to write scripts instead of just typing in a few lines of text. We used the intro tutorials from https://kidscancode.org/ . Looks like those have not been updated to Godot 4 thoug…