Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Game div tips for N00BS

A topic by eadyingh created Aug 22, 2021 Views: 666 Replies: 9
Viewing posts 1 to 8
(+1)

any tips for doing stuff as fast as possible.

Submitted (1 edit) (+5)

Here are a few general game jam tips that i've come across that are super helpful:

1. figure out a good workflow, everyone works differently so this is something you'll have to figure out yourself.

2. don't rush yourself too much, you will end up making more mistakes that way

3. release whatever you have by the end of the jam, even if it isn't finished, you can't receive feedback if you don't release anything

4. game jams are about learning and growing as a developer, don't go into one where your only goal is to "win"

5. start with a small idea and only add on to it when you've implemented that idea so you don't end up overscoping your project

Good luck in the jam, and have fun!

Deleted post

ta both of ya. I'm just hopin' not to come last, I'm happy even if I come second last.

(+1)

try and win

maybe

Submitted(+1)

Make something simple and improve on it.

Submitted(+1)

Make something simple and improve on it.

(+1)

Here is a div tip. If you want to center it horizontally and vertically, you can use flexbox. It’s really easy.

.centerdiv {
  display: flex;
  justify-content: center;
  align-items: center;
}

Ta! After years now I finally know!