-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathresources.html
206 lines (192 loc) · 6.41 KB
/
resources.html
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>CSE 290R: Game Development</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat&family=Open+Sans&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.6.0/styles/default.min.css">
</head>
<body>
<header>
<div class="page">
<h1>CSE 290R<span id="coursetitle">: Special Topics</span></h1>
<img src="img/byui-logo.svg" alt="BYU-I logo" class="logo">
</div>
</header>
<main class="page">
<div class="layout">
<nav class="sidebar">
<ul class="menu">
<li><a href="index.html">Game Dev</a></li>
</ul>
<h4 style="margin: 20px 0 20px 0">Units</h4>
<ul class="menu">
<li><a href="unit01.html">1. Introduction</a></li>
<li><a href="unit02.html">2. Fundamentals</a></li>
<li><a href="unit03.html">3. Alpha Kickoff</a></li>
<li><a href="unit04.html">4. Alpha Expansion</a></li>
<li><a href="unit05.html">5. Beta Kickoff</a></li>
<li><a href="unit06.html">6. Beta Completion</a></li>
<li><a href="unit07.html">7. Gold Candidate</a></li>
<li><a href="unit08.html">8. Game Contest</a></li>
</ul>
<h4 style="margin: 20px 0 20px 0">Other</h4>
<ul class="menu">
<li><a href="comps.html">Competencies</a></li>
<li><a href="evals.html">Evaluations</a></li>
<li><a href="resources.html">Resources</a></li>
</ul>
</nav>
<div class="content">
<h2>Resources</h2>
<p>I've tried to curate a list of good resources here. The Godot Docs
should be your primary source of information. All sub-sections are
worth studying/reviewing unless specified. If you prefer to learn
from videos go straight to the Godot Academy link below. There's a
great list of the best channels there.
</p>
<h3>Godot Docs</h3>
<ol>
<li>
<a
href="https://docs.godotengine.org/en/stable/getting_started/introduction/index.html">
Getting Started
</a>
</li>
<li>
<a
href="https://docs.godotengine.org/en/stable/tutorials/editor/index.html#">
Editor Introduction
</a>
</li>
<li>
<a
href="https://docs.godotengine.org/en/stable/getting_started/step_by_step/index.html">
Step by Step
</a>
</li>
<li>
<a
href="https://docs.godotengine.org/en/stable/getting_started/first_2d_game/index.html">
Your First 2D Game
</a>
</li>
<li>
<a
href="https://docs.godotengine.org/en/stable/tutorials/scripting/gdscript/index.html">
Scripting
</a>
</li>
<li>
<a
href="https://docs.godotengine.org/en/stable/tutorials/best_practices/index.html#">
Best Practices
</a>
</li>
<li>
<a
href="https://docs.godotengine.org/en/stable/tutorials/scripting/debug/overview_of_debugging_tools.html">
Debugging Tools
</a>
</li>
<li>
<a
href="https://docs.godotengine.org/en/stable/tutorials/2d/index.html">
2D
</a> (note the Tools->TileMap and Tools->TileSet pages!)
</li>
<li>And a bunch more like Audio, File I/O, Input Handling, Physics,
etc.</li>
</ol>
<h3>Godot Academy</h3>
<ol>
<li><a href="https://godotacademy.io/">Game Tutorials</a> (a couple
of decent ones here)</li>
<li><a
href="https://www.gdquest.com/news/2022/12/learn-gdscript-app/">Learn GDScript From Zero
</a> </li>
<li><a
href="https://godotacademy.io/best-godot-engine-tutorials">Best
Godot Channels</a> (really great list of YouTube channels!)</li>
</ol>
<h3>GDQuest</h3>
<ol>
<li><a href="https://www.gdquest.com/tutorial/godot/">Godot
Tutorials</a> (several good resources here, explore the
submenus)</li>
<li><a
href="https://www.gdquest.com/tutorial/krita/legacy/krita-from-zero/">
Learn Krita From Zero</a>
(really great intro to 2D asset creation)</li>
</ol>
<h3>Godot Recipes</h3>
<ol>
<li>
<a
href="https://kidscancode.org/godot_recipes/4.x/">
Introduction
</a>
</li>
<li>
<a
href="https://kidscancode.org/godot_recipes/4.x/basics/index.html">
Basics
</a>
</li>
<li>
<a
href="https://kidscancode.org/godot_recipes/4.x/2d/index.html">
2D</a> (a bunch of tips and tricks, you'll need to pick and choose)
</li>
<li>
<a
href="https://kidscancode.org/godot_recipes/4.x/animation/spritesheet_animation/index.html">
SpriteSheet Animation
</a>
</li>
<li>Explore Input, UI, Physics and Audio for more misc tricks.</li>
</ol>
<h3>Game Design Skills</h3>
<ol>
<li>
<a
href="https://gamedesignskills.com/game-design/core-loops-in-gameplay/">
Core Loops in Gameplay
</a>
</li>
<li>
<a
href="https://gamedesignskills.com/game-design/video-game-mechanics/">
Video Game Mechanics
</a>
</li>
<li>
<a
href="https://gamedesignskills.com/game-design/game-progression/">
Game Progression and Progression Systems
</a>
</li>
<li>
<a
href="https://gamedesignskills.com/game-design/playtest/">
How to Properly Play Test Your Game
</a>
</li>
</ol>
</div>
</div>
</main>
<footer>
<p>Copyright © Brigham Young University-Idaho | All rights reserved</p>
</footer>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.6.0/highlight.min.js"></script>
<script>hljs.highlightAll();</script>
</body>
</html>