-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathunit05.html
98 lines (88 loc) · 3.5 KB
/
unit05.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
<!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>Unit 05 - Beta Kickoff</h2>
<br/>
<h3>Competencies</h3>
<ol class="nested-list" style="--start-top: 1;">
<li>
A completed game project demonstrating technical, creative, and design skills.
<ol style="--start-nested: 7;">
<li>Implement multiple levels or equivalent with clear objectives and progression.</li>
<li>Identify and resolve major gameplay issues through beta testing and debugging.</li>
<li>Optimize game performance to ensure a smooth and cohesive player experience.</li>
</ol>
</li>
</ol>
<h3>Activities</h3>
<ol>
<li>Study or review the learning resources as needed.</li>
<li>Conduct peer feedback sessions focused on level flow and challenge balancing.</li>
<li>Conduct debugging sessions to identify and resolve critical gameplay issues.</li>
<li>Conduct performance optimization sessions (e.g., frame rate) and resolve critical issues.</li>
</ol>
<h3>Deliverables</h3>
<ol>
<li>Initial beta version of the game with:
<ul>
<li>Two or more polished levels or the equivalent showcasing
progression through challenges.</li>
<li>Major gameplay issues resolved and smoother transitions between scenes.</li>
</ul>
</li>
<li>A short video walkthrough explaining the challenges and solutions.</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>