Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Gamedev tips for 2023

A topic by 40wattstudio created Jan 01, 2023 Views: 483 Replies: 12
Viewing posts 1 to 7
(+4)

Happy New Year everyone!

Whether this is the year you want to make your first game or finish one you already have, here are some tips to help you along:

- When was the last time you backed up your harddrive? Don't lose all that hard work. Today is a great day to start!
- Have a consistent schedule. I have a regular job and a family, but I still find time for game development by waking up early and working for at least an hour. Slow progress is better than no progress.
- Keep learning. You may already know how to do things, but there may be better ways of doing them. Use things like Youtube, Udemy, websites, books and sample programs to learn new techniques and skills. 
- Start small. Your first game doesn't even need to have graphics -- text adventures are great starter projects! But you could also make clones of classics like Pong, Space Invaders, Asteroids, Pac-Man, platformers, etc.
- Use tools. Some of my unaffiliated favorites are:
Blender (for 3D graphics)
Embergen (for explosions and smoke)
Aseprite (for pixel art)
TexturePacker (for spritesheets)
Notepad++ (for comparing code text files).

- Get help.
Find forums specific to your game engine or programming language.
Search for solutions on Youtube and Google.
DM other game developers on social media and ask how they would do something.
Ask ChatGPT to explain some code or give a basic code outline.
Implement debug tools and log files into your game.

- Have fun. The key to staying motivated on your game project long term is to make a game that you want to play. Don't let others kill your motivation by suggesting game mechanics and features that you're just not interested in.

- Recommended reading:
- "Blood, Sweat, and Pixels" by Jason Shreier
- "Power-Up" by Matthew Lane
- "Procedural Generation in Game Design" by Tanya Short and Tarn Adams

- Don't forget to back up your harddrive!

"The way to get started is to quit talking and begin doing." -- Walt Disney
(+3)

When was the last time you backed up your harddrive? Don’t lose all that hard work. Today is a great day to start!

This, but also consider setting up version control on your projects if you haven’t. There’s more ways to lose progress than just hardware failure!

One of the tools you talked about could be interesting for me : Embergen. Do you use it personnaly ?

Sure do! Here are some of my  quick thoughts on it:

- Fairly intuitive. It uses a node-based system like what you would find in Blender or Unreal Engine. You create the nodes you want and connect them to different inputs to make different effects. 

- There is a bit of a learning curve. There are tons of variables you can adjust. Yet most of the time there are only a handful that you'll be dealing with.

- I haven't done it yet, but you can also export your Embergen files to Blender and use them there.

- A huge selling point for me was that it has a bunch of pre-made templates. So if you need an explosion effect, you can find one that's close enough and then tweak it to your needs. 

- There is an annual subscription, but I find it pretty reasonable ( I say this as a solo dev who doesn't have a huge gamedev budget). Initially it's like $300/yr and then every year afterwards it's only around $160/yr. There is also a free trial you can take advantage of.

- Below is an explosion I made using Embergen:


OK. Thanks a lot.

(3 edits) (+1)

Keep a to-do list.  Any time you think of something you want to add or fix but can't do it right away, write it down, or create an issue in your repository.  Come back to it when you're ready and check it off.  Not only is this a good way to keep track of what needs doing, but checking things off is satisfying and good for motivation.  You'll also waste less time thinking "what should I work on next?" because you'll always have plenty of answers right at hand.

Also, one very underrated game development tool is pencil and paper.  If you are stuck on a design or math problem, or just need to brainstorm content ideas or draft a new level, try stepping away from the computer and sitting down somewhere else to work it out on paper.  I like to sit on my bed with a clipboard.  I find this to be the most intuitive way to work through my thoughts and decide on an approach.  Scribbling on paper is much more free-form than working in Notepad or Excel, and it removes all the distractions of your code and development applications.

I also often do this when designing new enemy sprites or certain other kinds of art.  I like to sketch the image by hand with drawing pencils, then scan it in and use the sketch as a basis for the pixel art.  I get better results this way than trying to pixel from scratch.  For my current project, a dungeon crawler, I always design and annotate levels on grid paper first.  The maps for this game are too complex to just freehand in Unity and expect them to turn out well.

Great tips! I keep a pile of scratch paper on my desk for the same reason.

(+3)
 Have fun. The key to staying motivated on your game project long term is to make a game that you want to play. Don't let others kill your motivation by suggesting game mechanics and features that you're just not interested in.

I want to expand on this, because it's important to look at feedback the right way.  I use two rules of thumb:

1) When it comes to things like accessibility, usability, clarity of instruction, interface design, display and input compatibility, and things like that, listen to your users.  That doesn't mean you have to do everything they say, but you should at least pay attention to it, because user experience tends to be a big blind spot for developers.  You understand your application inside and out, but your players don't.  It's also natural to design around our own capabilities and not fully consider what others need or prefer.

2) When it comes to mechanics, gameplay design, writing, art style, and so on - all the creative aspects - consider feedback carefully.  Ask yourself "is this actually a weak spot that I can improve on?" or "if I make this change, will it bring me closer to my design goals, or not?" If the answer is yes, then it's probably a good idea.  If the answer is no, you should probably ignore it.  It's your game, so make it the way you want.  That doesn't mean that all of your own ideas are automatically the best ones, it just means that you need to filter out feedback that won't help you achieve your goals.

(+1)

Coming from a UX perspective, one anecdote I’ve often heard is that users are great at finding problems, but not at solving them. Sometimes if you get an unwanted suggestion a lot it’s a sign that something should be done but necessarily what’s being asked for, and trying to dig into the why behind suggestions can be a good way to find a solution that matches your creative vision.

Deleted post
Deleted post
Deleted post

My best tip to all of you is get an Unreal account, and a Unity account. Via Unreal Engine 4 and 5, free assets are offered each month on their Marketplace.  First Tuesday of every month, is Unreal Tuesday. There's always something worth looking out for, that may make your game demo, or full game, that much better.  Unity may have something similar for free monthly assets, but I don't use my Unity account as often.  Enjoy.