Last active
August 7, 2020 16:52
-
-
Save Teelord/6d1d77e39d25d6a64fc0bbc7f1b06540 to your computer and use it in GitHub Desktop.
Revisions
-
Teelord revised this gist
Aug 7, 2020 . 1 changed file with 5 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -27,19 +27,19 @@ My Tips Links of Interest ----------------- **Ludum Dare Survival Tips** https://dev.to/shelsoloa/ludum-dare-survival-guide-j1i **10 Game Jam Tips** https://jpirker.com/10-tips-for-a-game-jam/ **16 Tips and Tools for Game Jams** https://gamedevelopment.tutsplus.com/articles/16-tips-tools-and-resources-for-your-next-game-jam--gamedev-12084 **Game Jam Tips on YouTube** https://www.youtube.com/results?search_query=game+jam+tips **Mistakes To Avoid** https://www.youtube.com/watch?v=Z1jzwI3q-I0 ***Music / Sound Tools*** -
Teelord revised this gist
Jul 28, 2020 . 1 changed file with 3 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,7 @@ Welcome to the world of Game Jams. ---------------------------------- In this document, you'll find a collection of tips and links that are meant to save you the pain of making needess mistakes in approach and docus so that you can do your best work while Jamming. This is a work in progress, so feel free to suggest items that should be added. Also, I expect this document is full of typos. My apologies for that. My Tips ------- -
Teelord revised this gist
Jul 28, 2020 . 1 changed file with 33 additions and 12 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -5,33 +5,54 @@ In this document, you'll find a collection of tips and links that are meant to s My Tips ------- 1. **Stick to 2D or Even Text** - The amount of work that goes into making even low-poly 3D models is insane. Add on texturing, lighting, etc. and the chances of getting anything done during a game jam is hard to imagine. Don't think your game even needs graphics. (Some Jams allow you to build board or card games. This can be a great way to imagine new gampley mechanics and can even lead to better video game designs down the road.) 2. **If you must do 3D, stick to primitives (i.e. spheres, cubes, etc.)** - If you're he#$ bent on going with 3D, stick to primitives but keep in mind that the effort you'll be putting into that extra dimension means you're going to have to cut effort from somewhere else. 3. **Final Graphics (e.g. sprites, tiles) Optional** - Do not focus on the polish of your graphics. Gameplay is more important. That the game runs smoothly is more important. Having start and end states is important. 4. **Nail the Basics First** - You may have really cool ideas that you think will put your game over the top. Remember that havign a working game is mre imporatant than getting all your great ideas into this first version. 5. **Make It Work First - You Can Improve the Game Later** - After the Jam is over, you can add in the polish and spice that you didn't have time during the sprint to the finish. Just focus on completing _a_ game. Trist me, the game you're dreaming of won't fit into a Jam. 6. **Focus on Skills/Tools You Know** - A Jam is a high pressure way to learn noew base skills and tools. Try to use familiar tools or learn your way around the ones you'll be using ahead of time. Nothing worse than having plans go sideways because your workflow is bottlenecked because you're using something brand-new and are feeling your way around. 7. **There's No Shame in Borrowing** - Borrow assets, gameplay ideas, music, etc. from other sources if you must. Borrow from old projects if allowed. Doing things the hard way is good for the ego but will take your attention away from working on the things that can only be built now, during the short window of time that you have. 8. **Have Fun!** - Have as much fun as you can. Do silly things. Try weird ideas. Throw incogruent things together. If there's a moment to go off the wall and a little crazy, it's while Jamming with friends. 9. **Divide and Conquer** - Jam with teammates with complementary skills, divide the work, bounce ideas off each other. Try to get a working game loop fast and demo for each other as often as possible. Look over each other's shoulder, pair up on a single computer and have one person drive then switch off. Being part of a team if a bigh chunk of the fun. Links of Interest ----------------- **Ludum Date Survival Tips https://dev.to/shelsoloa/ludum-dare-survival-guide-j1i **10 Game Jam Tips https://jpirker.com/10-tips-for-a-game-jam/ **16 Tips and Tools for Game Jams https://gamedevelopment.tutsplus.com/articles/16-tips-tools-and-resources-for-your-next-game-jam--gamedev-12084 **Game Jam Tips on YouTube https://www.youtube.com/results?search_query=game+jam+tips **Mistakes To Avoid https://www.youtube.com/watch?v=Z1jzwI3q-I0 ***Music / Sound Tools*** https://www.bfxr.net/ http://www.drpetter.se/project_sfxr.html **Tipmaps/Pixel Graphics*** Learn what a sprite sheet and a tilemap are. They are probably the top 2 concepts used in "pixel" art 2D games. https://pyxeledit.com/ https://www.mapeditor.org/ https://renderhjs.net/shoebox/ A simple example 2D pixel game: https://lagged.com/play/2047/ -
Teelord revised this gist
Jul 28, 2020 . 1 changed file with 7 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -24,9 +24,14 @@ My Tips Links of Interest ----------------- ** 10 Game Jam Tips https://jpirker.com/10-tips-for-a-game-jam/ ** 16 Tips and Tools for Game Jams https://gamedevelopment.tutsplus.com/articles/16-tips-tools-and-resources-for-your-next-game-jam--gamedev-12084 ** Music / Sound Tools https://www.bfxr.net/ http://www.drpetter.se/project_sfxr.html -
Teelord created this gist
Jul 28, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,32 @@ Welcome to the wrkd of Game Jams. In this document, you'll find a collection of tips and links that are meant to save you the pain of making needess mistakes in approach and docus so that you can do your best work while Jamming. My Tips ------- 1. *** Stick to 2D *** - The amount of work that goes into making even low-poly 3D models is insane. Add on texturing, lighting, etc. and the chances of getting anything done during a game jam is hard to imagine. 2. *** If you must do 3D, stick to primitives (i.e. spheres, cubes, etc.) *** - If you're he#$ bent on going with 3D, stick to primitives but keep in mind that the effort you'll be putting into that extra dimension means you're going to have to cut effort from somewhere else. 3. *** Final Graphics (e.g. sprites, tiles) Optional *** - Do not focus on the polish of your graphics. Gameplay is more important. That the game runs smoothly is more important. Having start and end states is important. 4. *** Nail the Basics First *** - You may have really cool ideas that you think will put your game over the top. Remember that havign a working game is mre imporatant than getting all your great ideas into this first version. 5. *** You Can Improve the Game Later *** - After the Jam is over, you can add in the polish and spice that you didn't have time during the sprint to the finish. Just focus on completing _a_ game. Trist me, the game you're dreaming of won't fit into a Jam. 6. *** There's No Shame in Borrowing *** - Borrow assets, gameplay ideas, music, etc. from other sources if you must. Borrow from old projects if allowed. Doing things the hard way is good for the ego but will take your attention away from working on the things that can only be built now, during the short window of time that you have. 7. *** Have Fun! *** - Have as much fun as you can. Do silly things. Try weird ideas. Throw incogruent things together. If there's a moment to go off the wall and a little crazy, it's while Jamming with friends. Links of Interest ----------------- 10 Game Jam Tips https://jpirker.com/10-tips-for-a-game-jam/ 16 Tips and Tools for Game Jams https://gamedevelopment.tutsplus.com/articles/16-tips-tools-and-resources-for-your-next-game-jam--gamedev-12084