Skip to content

Commit 9f549cb

Browse files
committed
Fix broken links
1 parent b041618 commit 9f549cb

File tree

2 files changed

+18
-9
lines changed

2 files changed

+18
-9
lines changed

ARCHIVE.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ _Language specific game engine development libraries / frameworks / code._
2727
## Specialty Topics
2828
_Exploring specialty application / game engine / game development topics and features._
2929

30+
### Animation Info
31+
- 📚 [Skeletons and Inverse Kinematics](https://venturebeat.com/2017/08/09/character-animation-skeletons-and-inverse-kinematics/) - Principles for using skeletons with IK for animation.
32+
3033
### Geometry
3134
- Algorithms
3235
- 📚 [Practical Geometry Algorithms](http://geomalgorithms.com/index.html) - Geometries, convex hulls, polyline simplification and more.
@@ -54,6 +57,18 @@ _Exploring specialty application / game engine / game development topics and fea
5457
### Tiling
5558
- 📚 [Blob Tileset](http://www.cr31.co.uk/stagecast/wang/blob.html) - Tutorial on 2D edge and corner matched tilesets.
5659

60+
61+
<br />
62+
<br />
63+
64+
## Tools / Software
65+
_Software to help with game engine / video game development._
66+
67+
### Audio Tools
68+
- Music
69+
- 🆓 [PixiTracker](https://warmplace.ru/soft/pixitracker/) - Quickly create musical sketches, chiptunes and sound experiments.
70+
- 🆓 [SunVox](https://warmplace.ru/soft/sunvox/) - Powerful [modular synthesizer](https://en.wikipedia.org/wiki/Modular_synthesizer) with pattern-based sequencer ([tracker](https://en.wikipedia.org/wiki/Music_tracker)).
71+
5772
<br />
5873
<br />
5974

README.md

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ This includes things typically not found in low-level game engines, app / game f
5050
- [Java](#java-1)
5151
- [Specialty Topics](#specialty-topics)
5252
- [AI / Pathfinding](#ai--pathfinding)
53-
- [Animation Info](#animation-info)
5453
- [Color Manipulation](#color-manipulation)
5554
- [Entity Component Systems](#entity-component-systems)
5655
- [Fluid / Smoke](#fluid--smoke)
@@ -188,7 +187,7 @@ _Info on topics necessary for designing and developing game engines._
188187
- 📚 [OpenGL Tutorial](https://www.opengl-tutorial.org) - Collection of OpenGL tutorials with source code examples.
189188
- Graphics API: Vulkan
190189
- 🌎 [Vulkan](https://www.vulkan.org) - Modern cross-platform graphics API. [[Samples](https://github.com/khronosGroup/Vulkan-samples)]
191-
- 📚 [Vulkan Tutorial](https://vulkan-tutorial.com) - Teaches the basics of using Vulkan graphics and compute API.
190+
- 📚 [Vulkan Tutorial](https://github.com/Overv/VulkanTutorial) - Teaches the basics of using Vulkan graphics and compute API.
192191
- Graphics API: WebGL
193192
- 🌎 [WebGL](https://www.khronos.org/webgl/) - Open web standard 3D graphics API. [[GitHub](https://github.com/KhronosGroup/WebGL)]
194193
- 📚 [WebGL Fundamentals](https://webglfundamentals.org) 🔥 - Full understanding of what WebGL really is and how it works.
@@ -602,7 +601,7 @@ _Language specific game engine development libraries / frameworks / code._
602601
- 🎉 [Avalonia](https://github.com/AvaloniaUI/Avalonia) - Cross-platform gui framework for .NET. [[Website](https://avaloniaui.net/)]
603602
- 🎉 [GeonBit.UI](https://github.com/RonenNess/GeonBit.UI) - Gui for _MonoGame_ projects.
604603
- 🎉 [Gum](https://github.com/vchelaru/Gum) - Flexible layout tool for creating UI on any platform.
605-
- 🎉 [MGUI](https://github.com/rds1983/Myra) - UI framework for the _MonoGame_ game framework.
604+
- 🎉 [MGUI](https://github.com/Videogamers0/MGUI) - UI framework for the _MonoGame_ game framework.
606605
- 🎉 [MonoGame.Forms](https://github.com/BlizzCrafter/MonoGame.Forms) - _MonoGame_ render window for Windows Forms.
607606
- 🎉 [Myra](https://github.com/rds1983/Myra) - Gui library for _MonoGame_, _FNA_, and _Stride_.
608607
- 🎉 [Squid](https://github.com/Roderik11/Squid) - C# Realtime GUI System.
@@ -846,7 +845,7 @@ _Language specific game engine development libraries / frameworks / code._
846845
- 🎉 [Babylon.js](https://github.com/BabylonJS/Babylon.js) 🔥 - Powerful web rendering engine. [[Extensions](https://github.com/BabylonJS/Extensions) | [Website](https://www.babylonjs.com/)]
847846
- 🎉 [ClayGL](https://github.com/pissang/claygl) - WebGL library for scalable Web3D applications.
848847
- 🎉 [CopperLicht](https://ambiera.com/copperlicht/) - A 3D library for WebGL. [[CopperCube Editor](https://ambiera.com/coppercube/index.html)]
849-
- 🎉 [Filament for Web](https://github.com/google/filament/tree/main/web/filament-js) - WebAssembly build of Google's 3D graphics library, Filament. [[Demos](https://google.github.io/filament/webgl/)]
848+
- 🎉 [Filament for Web](https://github.com/google/filament/tree/main/web/filament-js) - WebAssembly build of Google's 3D graphics library, _Filament_.
850849
- 🎉 [Four](https://github.com/CodyJasonBennett/four) - Minimal three.js alternative.
851850
- 🎉 [Hilo3d](https://github.com/hiloteam/Hilo3d) - WebGL 3D rendering engine by _Alibaba_.
852851
- 🎉 [Litescene.js](https://github.com/jagenjo/litescene.js) - WebGL 3D engine library, used by WebGLStudio.
@@ -1085,9 +1084,6 @@ _Exploring specialty game engine / game development topics and features._
10851084
- 📚 [Intro to AI](https://www.raywenderlich.com/2808-introduction-to-ai-programming-for-games) - Intro to AI Programming for Games at RayWenderlich.com.
10861085
- 📚 [Beginner's Guide to Game AI](https://www.gamedev.net/tutorials/programming/artificial-intelligence/the-total-beginners-guide-to-game-ai-r4942/) - Intro to concepts used in AI for games.
10871086

1088-
### Animation Info
1089-
- 📚 [Skeletons and Inverse Kinematics](https://venturebeat.com/2017/08/09/character-animation-skeletons-and-inverse-kinematics/) - Principles for using skeletons with IK for animation.
1090-
10911087
### Color Manipulation
10921088
- 📚 [How to Choose Colors Procedurally](http://devmag.org.za/2012/07/29/how-to-choose-colours-procedurally-algorithms/) - Procedural palettes and how to generate them.
10931089
- 📚 [Red, Yellow, and Blue](https://daveeddy.com/2014/07/01/red-yellow-and-blue/) - Convert colors from the paint color wheel to RGB space. [[Source](https://github.com/bahamas10/ryb)]
@@ -1279,9 +1275,7 @@ _Software to help with game engine / video game development._
12791275
- 🆓 [FamiStudio](https://famistudio.org) - Music editor targeted at chiptune artists and NES homebrewers. [[Source](https://github.com/BleuBleu/FamiStudio)]
12801276
- 💸 [fmod](https://www.fmod.com) - Popular (_Hades_, _Celeste_, _Untitled Goose Game_) audio software for games.
12811277
- 🆓 [LMMS](https://lmms.io) 🔥 - Cross-platform music production software. [[Source](https://github.com/lmms/lmms)]
1282-
- 🆓 [PixiTracker](https://warmplace.ru/soft/pixitracker/) - Quickly create musical sketches, chiptunes and sound experiments.
12831278
- 🆓 [Sound Box](https://sb.bitsnbites.eu) - Compose synthetic music in your browser, good for small demos. [[Source](https://github.com/mbitsnbites/soundbox)]
1284-
- 🆓 [SunVox](https://warmplace.ru/soft/sunvox/) - Powerful [modular synthesizer](https://en.wikipedia.org/wiki/Modular_synthesizer) with pattern-based sequencer ([tracker](https://en.wikipedia.org/wiki/Music_tracker)).
12851279
- 🆓 [ZzFXM](https://keithclark.github.io/ZzFXM/tracker/) - Music generator for use in tiny JavaScript apps. [[Source](https://github.com/keithclark/ZzFXM)]
12861280
- Sound Effects
12871281
- 🆓 [Bfxr](https://www.bfxr.net) - Classic. For making simple sound effects for games. [[Source](https://github.com/increpare/bfxr)]

0 commit comments

Comments
 (0)