aboutsummaryrefslogtreecommitdiff
path: root/src/posts/big-list-game-dev.njk
blob: 4f70620ca1a7fdcb3c083b23cdf70bce1b31838b (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
---
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">
    People always think game development is an expensive thing, because most of 
    the time when we search about game development we will discouraged by either 
    the subscription amount or the percentage cut of the so called AAA engines. 
    Yes you can makes games with those tools nobody is going to stop you, but the thing is by using
    open source tools and engines you are not bound to restrictive tools, you can adapt, modify and even
    introduce your own functionality in the tools/engine you are using.
</p>

<p class="mt-5">Welcome to the big list (eventually it will be) of always updating list 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>