Artwork

Contenuto fornito da Knox Game Design. Tutti i contenuti dei podcast, inclusi episodi, grafica e descrizioni dei podcast, vengono caricati e forniti direttamente da Knox Game Design o dal partner della piattaforma podcast. Se ritieni che qualcuno stia utilizzando la tua opera protetta da copyright senza la tua autorizzazione, puoi seguire la procedura descritta qui https://it.player.fm/legal.
Player FM - App Podcast
Vai offline con l'app Player FM !
icon Daily Deals

Knox Game Design

Condividi
 

Manage series 1093732
Contenuto fornito da Knox Game Design. Tutti i contenuti dei podcast, inclusi episodi, grafica e descrizioni dei podcast, vengono caricati e forniti direttamente da Knox Game Design o dal partner della piattaforma podcast. Se ritieni che qualcuno stia utilizzando la tua opera protetta da copyright senza la tua autorizzazione, puoi seguire la procedura descritta qui https://it.player.fm/legal.
Knox Game Design is a monthly discussion by game creators in the Knoxville, Tennessee area. We share our ideas, show off projects, and discuss current topics related to video game development. Our group explores the many facets of the game design process, such as coding, graphics, modeling, animation, story, and promotion. You can find out more information on the group including future meeting dates at knoxgamedesign.org
  continue reading

110 episodi

Artwork

Knox Game Design

17 subscribers

updated

iconCondividi
 
Manage series 1093732
Contenuto fornito da Knox Game Design. Tutti i contenuti dei podcast, inclusi episodi, grafica e descrizioni dei podcast, vengono caricati e forniti direttamente da Knox Game Design o dal partner della piattaforma podcast. Se ritieni che qualcuno stia utilizzando la tua opera protetta da copyright senza la tua autorizzazione, puoi seguire la procedura descritta qui https://it.player.fm/legal.
Knox Game Design is a monthly discussion by game creators in the Knoxville, Tennessee area. We share our ideas, show off projects, and discuss current topics related to video game development. Our group explores the many facets of the game design process, such as coding, graphics, modeling, animation, story, and promotion. You can find out more information on the group including future meeting dates at knoxgamedesign.org
  continue reading

110 episodi

Tất cả các tập

×
 
New Game Releasing this month Check out the new game Shrine of the Forest God by Dustin, which will be released on Steam on February 28, 2025. Monthly Presentation How to create a simple client and server socket connections in Python to send network data. Demo of how to use socket code to implement a … Continue reading Sockets – Knox Game Design, February 2025 →…
 
Explanation of how to implement drag and drop interface for games. Demos with source code include Unity (C#), MonoGame (C#), GameMaker (GML), and SDL (C). Links and Notes Demo source code – https://github.com/levidsmith/KnoxGameDesign/tree/master/draganddrop Unity – https://unity.com/ MonoGame – https://monogame.net/ GameMaker – https://gamemaker.io/en SDL – https://www.libsdl.org/ Podcast theme music – Ride by Pocketmaster…
 
Overview of steps to create a Solitaire game in Unity. Links and Notes Demo source code – https://github.com/levidsmith/KnoxGameDesign/tree/master/solitaire OpenGameArt card front sprites – https://opengameart.org/content/playing-cards-vector-png OpenGameArt card back sprite – https://opengameart.org/content/colorful-poker-card-back Unity – https://unity.com/ Podcast theme music – Ride by Pocketmaster…
 
Explanation of mesh model face normals in Blender, which are imported into Unity. Steps to show normals in Blender and how to flip and recalculate normals. Links and Notes Demo project – https://github.com/levidsmith/KnoxGameDesign/tree/master/blender_normals Blender – https://www.blender.org/ Unity – https://unity.com/ Podcast theme music – Ride by Pocketmaster…
 
Analysis of how battle damage is calculated in role playing games (RPGs). How damage is calculated in traditional table top RPGs using dice rolls. Statistical analysis of outcomes of various dice combinations. Calculation of battle damage in the video game RPGs Dragon Quest (Dragon Warrior) and Final Fantasy along with verification of damage outcomes. Links … Continue reading RPG Battle Damage – Knox Game Design, October 2024 →…
 
Overview of how to use NFTs (non fungible tokens) in games, including how to mint tokens, specify trait values, and using OpenSea API to read NFT data into a game. Demo of Unity RPG game using NFTs for equippable weapons. Links and Notes Blockchain RPG demo – https://github.com/levidsmith/KnoxGameDesign/tree/master/blockchain/BlockchainRPG OpenSea API – https://docs.opensea.io/reference/api-overview Podcast theme music … Continue reading NFTs – Knox Game Design, September 2024 →…
 
Proof of concept demonstration on how to implement a blockchain to track game currency and purchase of game items. In this demonstration, the blockchain is created in PHP on a Fedora Linux virtual machine running in Virtual Box. The block chain is pulled into Unity through C# networking code. Regular expressions are used to parse … Continue reading Blockchain for Game Development – Knox Game Design, August 2024 →…
 
Demonstration of how to use the FCEUX emulator memory tools to determine the memory location of in-game variables, such as number of coins. How to set a breakpoint with the Hex Editor to find the 6502 assembly code that is executed when a memory location is changed. Analysis of assembly code for awarding an extra … Continue reading Exploring NES Memory – Knox Game Design, July 2024 →…
 
Comparison of jumping statistics from various characters in classic platformer games. Analysis of states in jump cycles. Demo of implementation of jump for a 2D platformer game. Links and Notes Demo Code – https://github.com/levidsmith/KnoxGameDesign/tree/master/jumping FCEUX – https://fceux.com/web/home.html Podcast theme music – Ride by Pocketmaster…
 
Thanks to everyone who came out to the Knox Game Jam 2024 kickoff! Seven great games were created by the group for the game jam. Great job everyone! Minu by Dustin Claws and Conundrums by James and PandaPuffsForBreakfast You are somewhat of a know-it-all. Your good friend has reached out for help in a murder … Continue reading Knox Game Jam 2024 Recap – Knox Game Design, April 2024 →…
 
Overview of using the Dia tool for creating UML diagrams. UML is a standard for creating various types of diagrams, such as class diagrams, state diagrams, and use case diagrams. Links and Notes UML – https://www.uml.org/ UML examples – https://www.uml-diagrams.org/ Dia at Gnome – https://wiki.gnome.org/Apps/Dia Dia installer – http://dia-installer.de/ Podcast theme music – Ride by … Continue reading UML with Dia – Knox Game Design, March 2024 →…
 
Explanation of how to create a texture mapped box by reading a BMP image file and displaying with OpenGL. Then how to create that same texture mapped the box in Blender to export into FBX format. The model is then imported and displayed multiple different game development environments, such as Unity, MonoGame, Godot, and Unreal … Continue reading Texture Mapping – Knox Game Design, February 2024 →…
 
Introduction to OpenGL and how to setup development environment using MSYS2. Code examples in C for displaying polygons, keyboard input with GLUT, and a simple game demo. OpenGL code examples in C – https://github.com/levidsmith/KnoxGameDesign/tree/master/opengl Links and Notes OpenGL – https://www.opengl.org/ MSYS2 – https://www.msys2.org/ Setting up OpenGL development Environment on Windows with MSYS2 – https://www.jamiebayne.co.uk/blog/opengl-windows Lazy … Continue reading OpenGL – Knox Game Design, January 2024 →…
 
Overview of modding Doom with customized levels and graphics. Links and Notes GZDoom download – https://zdoom.org/downloads Doom World mods – https://www.doomworld.com/idgames/ ModDB mods – https://www.moddb.com/games/doom-ii/mods Ultimate Doom Builder download – https://devbuilds.drdteam.org/ultimatedoombuilder/ Ultimate Doom Builder instructions – https://forum.zdoom.org/viewtopic.php?t=66745 MSYS2 (7zip decompression) – https://www.msys2.org/ Doom World Doom editors – https://www.doomworld.com/classicdoom/utils/editors.php Doom World beginner tutorial – https://www.doomworld.com/forum/topic/140740-doom-mapping-crash-course-absolute-beginner-mapping-workshop/ Slade3 … Continue reading Doom Modding – Knox Game Design, December 2023 →…
 
Loading …

Benvenuto su Player FM!

Player FM ricerca sul web podcast di alta qualità che tu possa goderti adesso. È la migliore app di podcast e funziona su Android, iPhone e web. Registrati per sincronizzare le iscrizioni su tutti i tuoi dispositivi.

 

icon Daily Deals
icon Daily Deals
icon Daily Deals

Guida rapida

Ascolta questo spettacolo mentre esplori
Riproduci