blob: 6680684e9623a997d920b120f9b8bc0b73ff4d4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
---
layout: posts.njk
title: Big List of Open Source Game Development Tools
description: Big List of Open Source Game Development Tools
---
<p class="article-intro indent-8">
Most of the people always think game development is an expensive thing, because
most of the time when we search about game development we will be discouraged
by either the subscription amount or the percentage cut of the so called AAA
engines or the platform. Yes, you can makes games with those tools nobody is
going to stop you. But eventually you will be restricted with a small set of
features or because most of the useful and important features will be behind
a paywall and you will be forced to pay for the features. But in the case of
Open Source tools/engines you can adapt, modify or you can introduce your own
functionality/features to the tools/engine that you are mostly needed.
</p>
<p class="mt-5">Enough with the blah blah!!</p>
<p class="mt-5">Welcome to the big list (eventually it will be) of always updating bucket of <span class="font-bold">Open Source Game Development Tools</span>.
Here you find not only Game Engines but other open source tools and utilities that will help you
in developing your dream game/prototypes.
</p>
<div class="mt-5">
<div class="overflow-auto">
<table class="min-w-full">
<thead class="border-b uppercase">
<tr>
<th scope="col" class="text-sm font-bold text-gray-900 px-6 py-4 text-left">
Tool
</th>
<th scope="col" class="text-sm font-bold text-gray-900 px-6 py-4 text-left">
Tool Type
</th>
<th scope="col" class="text-sm font-bold text-gray-900 px-6 py-4 text-left">
Supported Graphics
</th>
<th scope="col" class="text-sm font-bold text-gray-900 px-6 py-4 text-left">
OS Supported
</th>
</tr>
</thead>
<tbody>
{% for tool in gtools.gameTools%}
<tr class="border-b">
<td class="text-sm text-gray-900 font-light px-6 py-4 whitespace-nowrap underline">
<a href={{tool.link}}>{{tool.toolName}}</a>
</td>
<td class="text-sm text-gray-900 font-light px-6 py-4 whitespace-nowrap">
{{tool.type}}
</td>
<td class="text-sm text-gray-900 font-light px-6 py-4 whitespace-nowrap">
{{tool.graphics}}
</td>
<td class="text-sm text-gray-900 font-light px-6 py-4 whitespace-nowrap">
{{tool.os}}
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
<div class="pt-5 text-xs">
If you want to add a tool or engine to this list or if you have any complaint with this article drop a {% feather "mail" %} @ <span class="font-bold">indrajith(at)indrajith(dot)dev</span>
</div>
|