├── BackgroundSprites.gbsproj
├── README.md
├── assets
├── avatars
│ └── danger.png
├── backgrounds
│ ├── !tileset.png
│ ├── BackgroundSprites.png
│ ├── BackgroundSprites201.png
│ ├── BackgroundSprites2010.png
│ ├── BackgroundSprites202.png
│ ├── BackgroundSprites203.png
│ ├── BackgroundSprites204.png
│ ├── BackgroundSprites205.png
│ ├── BackgroundSprites206.png
│ ├── BackgroundSprites207.png
│ ├── BackgroundSprites208.png
│ ├── BackgroundSprites209.png
│ ├── BackgroundSprites210.png
│ ├── BackgroundSprites211.png
│ ├── elavtor.png
│ ├── hidden-path-wall.png
│ ├── hidden-path.png
│ ├── layers.png
│ ├── menu.png
│ ├── transparent.png
│ └── water-tileset.png
├── emotes
│ ├── anger.png
│ ├── love.png
│ ├── music.png
│ ├── pause.png
│ ├── question.png
│ ├── shock.png
│ ├── sleep.png
│ └── sweat.png
├── fonts
│ ├── gbs-mono.json
│ ├── gbs-mono.png
│ ├── gbs-var.json
│ └── gbs-var.png
├── music
│ ├── Rulz_BattleTheme.mod
│ ├── Rulz_BattleTheme.uge
│ ├── Rulz_FastPaceSpeedRace.mod
│ ├── Rulz_FastPaceSpeedRace.uge
│ ├── Rulz_GonaSpace.mod
│ ├── Rulz_GonaSpace.uge
│ ├── Rulz_Into the woods.mod
│ ├── Rulz_Into the woods.uge
│ ├── Rulz_Intro.mod
│ ├── Rulz_Intro.uge
│ ├── Rulz_LightMood.mod
│ ├── Rulz_LightMood.uge
│ ├── Rulz_Outside.mod
│ ├── Rulz_Outside.uge
│ ├── Rulz_Pause_Underground.mod
│ ├── Rulz_Pause_Underground.uge
│ ├── Rulz_SpaceEmergency.mod
│ ├── Rulz_SpaceEmergency.uge
│ ├── Rulz_UndergroundCave.mod
│ ├── Rulz_UndergroundCave.uge
│ └── template.mod
├── sprites
│ ├── arrow.png
│ ├── bullet.png
│ ├── bullet_left.png
│ ├── bullet_right.png
│ ├── cat.png
│ ├── checkbox.png
│ ├── chest.png
│ ├── cursor.png
│ ├── dog.png
│ ├── duck.png
│ ├── elephant.png
│ ├── enemy_ship.png
│ ├── explode.png
│ ├── fire.png
│ ├── hidden_stairs.png
│ ├── ice.png
│ ├── machine.png
│ ├── npc001.png
│ ├── npc002.png
│ ├── npc003.png
│ ├── npc004.png
│ ├── npc005.png
│ ├── npc006.png
│ ├── npc007.png
│ ├── npc_gardener.png
│ ├── player.png
│ ├── player_platform.png
│ ├── player_ship.png
│ ├── pod_door.png
│ ├── portal.png
│ ├── radio.png
│ ├── rock.png
│ ├── sage.png
│ ├── savepoint.png
│ ├── signpost.png
│ ├── space_mine.png
│ ├── torch.png
│ ├── turnip.png
│ └── ui_weapon.png
└── ui
│ ├── ascii.png
│ ├── cursor.png
│ ├── emotes.png
│ └── frame.png
└── help
├── BackgroundSprites-2.4.gif
├── lesson-2-1-0.gif
├── lesson-2-1-0.png
├── lesson-2-2-0.png
├── lesson-2-2-1.png
├── lesson-2-2-2.png
├── lesson-2-2-3.gif
├── lesson-2-3-1.gif
├── lesson-2-3-1.png
├── lesson-2-3-2.gif
├── lesson-2-3-2.png
├── lesson-2-3-4.png
├── lesson-2-3-5.gif
├── lesson-2-3-scene.png
├── lesson-2-3-spaceship-background-animation-state.png
└── lesson-2-4-frames.png
/README.md:
--------------------------------------------------------------------------------
1 | # GB Studio Tutorial - Background Sprites
2 | 
3 |
4 | Interactive GB Studio tutorial for rendering background tiles in front of sprites. The source code was built using with GBS 3.0.3. Enjoy :)
5 |
6 | ### GB Studio Tutorials:
7 |
8 | - [1.0 - Animated Tiles](https://github.com/phinioxGlade/gbstudio-3-animated-tile-tutorial)
9 | - [2.0 - Background Sprites](https://github.com/phinioxGlade/gbstudio-background-sprites-tutorial) < This Tutorial
10 |
11 | ### Lessons:
12 |
13 | - [2.0 - How to setup a sprite to render behind background tiles](#lesson-20---how-to-setup-a-sprite-to-render-behind-background-tiles)
14 | - [2.1 - How transparency is handled](#lesson-21---how-transparency-is-handled)
15 | - [2.2 - Use of triggers to toggle player sprite in front of and behind background tiles](#lesson-22---use-of-triggers-to-toggle-player-sprite-in-front-of-and-behind-background-tiles)
16 | - [2.3 - Simulating additional layers](#lesson-23---simulating-additional-layers)
17 | - [2.4 - Animating background tiles to hide the transition between sprites in front of and behind background tiles](#24---animating-background-tiles-to-hide-the-transition-between-sprites-in-front-of-and-behind-background-tiles)
18 |
19 | ### Concepts:
20 |
21 | - Animation States and Frames
22 | - How an actor is contructed
23 | - Related Sprite Editor features
24 | - Builds off concepts from my previous [GB Studio 3.0.3 - Tutorial 1.0 - Animated Tiles](https://github.com/phinioxGlade/gbstudio-3-animated-tile-tutorial)
25 |
26 | ### Useful Resources:
27 |
28 | - [GBVM source file](https://github.com/untoxa/gbvm/blob/master/include/vm.i)
29 | - [GBVM Command Reference](https://gist.github.com/pau-tomas/92b0ad77506088d184a654af226f5b7d)
30 | - [GB Studio Central - Understanding GBVM](https://github.com/untoxa/gbvm/blob/master/include/vm.i)
31 | - [GB Studio Plug-In Database](https://docs.google.com/spreadsheets/d/1d2F5hSEMt6nkacw-qVnYlT3IPHqmCCaLFhRboC5xxc0/edit#gid=0)
32 |
33 | ### Lesson 2.0 - How to setup a sprite to render behind background tiles
34 |
35 | We will begin by discussing the basic steps to render am actor/player sprite behind the background layer.
36 |
37 | In GBS3, actors can be made up of multiple component sprites and frames of animations.
38 | We will refer to smaller component sprites as sub-sprites.
39 | Each sub-sprite within animation frame can be independently set to render behind the background layer.
40 | GBS3 provides the Sprite Editor for configuring sprite sheets.
41 |
42 | #### How-to edit a Sprite
43 |
44 | From the Game World section:
45 | 1. Expand the "Game World" drop down list in the top left under the File Edit menu
46 | 2. Then select "Sprites" to open the Sprite Editor
47 | 3. Find the sprite you want to edit, this part of tutorial we will focus on the *player_platform* sprite
48 |
49 | #### Animation States and Sub-States
50 |
51 | Each sprite is made up of animation states. These states are made up of sub-states based on the "Animation Type".
52 | *player_platform* is of type "Platformer Player", which consists of:
53 |
54 | 1. Idle Left/Right: Animation played when not moving
55 | 2. Moving Left/Right: Animation played when while moving
56 | 3. Jump Left/Right: Animation played while jumping
57 | 4. Climbing: Animation played while climbing a ladder
58 |
59 | GBS studio allows you to mirror Left/Right animations and this is checked by default.
60 |
61 | #### Creating a new Animation State
62 |
63 | To create a new animation state, click the "+" button next to the ANIMATIONS heading.
64 | New states default to the "Fixed Direction" animation type, with only the Idle sub-state.
65 | To get the additional sub-stats, change the type to "Platformer Player".
66 | Its recommended that you also rename state so its easier reference, in this tutorial it was renamed to "behind"
67 |
68 | #### Recreating the Animations
69 |
70 | Currently GBS lacks a clone animation state/sub-status feature, so you will need to manually recreate all the animation frames.
71 | This is done my dragging tiles from the sprite sheet into the animation frame and repeating for all frame you want to recreate.
72 |
73 | #### Set sprites to display behind background layer
74 |
75 | Once the animation has been recreated, the final step is setting which parts of the actor will be "Display behind background layer".
76 | As mentioned previous each sub-sprite can be independently set to render behind the background layer, in this tutorial we made the entire frame to behind:
77 |
78 | 1. Select all the tiles in the frame
79 | 2. Check the "Display behind background layer" in the Sprite Tiles panel on the right
80 | 3. Repeat for each frame of animation and all the sub-states
81 |
82 | #### Using the "behind" Animation State
83 |
84 | Now the sprite is built. We just need to set the Animation State.
85 | Add the event "Set Actor Animation State", in this example to the Scene "On Init", and set Player's state to "behind".
86 | You can do this for any actor, no just the Player.
87 | Use the same event to swap back to "Default" animation state, we will discuss this further in next part of the lesson.
88 |
89 | ### Lesson 2.1 - How transparency is handled
90 |
91 |
92 |
93 | When your designing your artwork for sprites behind the background layer, there is the transparent shade.
94 |
95 | This is assigned to the lightest/white shade.
96 |
97 | So light green, dark green and black all render in front of the sprite.
98 |
99 | You need to keep this in mind when creating backgrounds to avoid unwanted overlap.
100 |
101 | You can change the which shade is transparent, but requires [NalaFala (Yousurname)'s plug-in](https://github.com/Y0UR-U5ERNAME/gbs-plugin-collection/tree/main/plugins/setPaletteColorsPlugin/events) or GBVM scripting (presumed GBVM has this feature). This will be covered in a future tutorial.
102 |
103 | ### Lesson 2.2 - Use of triggers to toggle player sprite in front of and behind background tiles
104 |
105 |
106 |
107 | In this basic example we will toggle the player's animation state between sprites in-front of background tiles and spirtes behind background tiles.
108 |
109 | In this instance we have added a trigger which overs the brick pilar.
110 |
111 | Trigger's "On Enter" has the event "Set Actor Animation State", which sets the player's the state to "behind".
112 |
113 |
114 |
115 | Trigger's "On Leave" does the reverse. Its swaps the state back to "Default".
116 |
117 |
118 |
119 | This is done so the player is only behind while obscured by the pilar.
120 |
121 |
122 |
123 | To avoid noticable pop when the states are swapped we have empty tiles either side of the pilar. This needs to be size of your player sprite, hence two transparent tiles left and right.
124 |
125 | ### Lesson 2.3 - Simulating additional layers
126 |
127 |
128 |
129 | The Gameboy is limited to just two layers:
130 |
131 | 1. The background tiles
132 | 2. The sprites
133 |
134 | But what if you wanted three layers?
135 |
136 | Well, you can achieve this affect by carefully mixing sprites rendered in front of and behind the background layer.
137 |
138 | We have already shown that triggers can be used to toggle player sprite behind but you can also do this for any sprite.
139 |
140 | #### Background Layer
141 |
142 |
143 |
144 | Lets add a spaceship.
145 |
146 | Which we want to be on the furtherest layer back. Set its state to *behind*.
147 |
148 | 
149 |
150 | #### Middle Ground Layer
151 |
152 |
153 |
154 | Next lets make a middle ground layer.
155 |
156 | Add another spaceship.
157 |
158 | Add logic to the actor's *On Update* so that if the actor is between X 15 and X 19, set the state to behind.
159 |
160 |
161 |
162 | *The example in the tutorial is incomplete and doesn't always work as intended. The spaceship movement script would need to be adjusted to better incorporate the layer change*
163 |
164 | #### Foreground Layer
165 |
166 |
167 |
168 | You could add a forth layer with sprites in front of the foreground pilar.
169 |
170 | #### Concussion
171 |
172 | Now we have 3 psuedo layers:
173 | 1. Spaceship always behind
174 | 2. Spaceship that toggles state using logic
175 | 3. Pilar in front of all sprites
176 |
177 | The amount of simulated layers is upto your creativity, coding skills and choice artwork.
178 |
179 | ## 2.4 - Animating background tiles to hide the transition between sprites in front of and behind background tiles
180 |
181 | 
182 |
183 | For the final part of the lesson, we will be using animated tiles to mask the transition between sprite states to create hidden path.
184 |
185 | The code for animating tiles was covered in my [Animated Tiles Tutorial](https://github.com/phinioxGlade/gbstudio-3-animated-tile-tutorial) available on Github. We will not be explaining the GBVM scripting required.
186 |
187 | 
188 |
189 | Above is 8 frames of the animations. We will reuse the first 4 frames for both the dark and very dark end tiles.
190 |
191 | This is the basic concept:
192 |
193 | 1. Initialize the hidden path by setting actors behind and swapping background tiles to their foreground version (GBVM scripting)
194 | 2. Add a trigger within the foreground wall which sets the actor sprite states to "behind" and begin the animated transition (GBVM scripting)
195 | 3. The animation is handled using the "On Update" of the orb actor, a Timer event might be a better choice
196 | 4. When the animation reaches the frame 5, set the states to "Default"
197 | 5. When the animation reaches the frame 8, stop animation
198 | 6. Add a second trigger with the reverse logic to hide the path
199 |
200 | ## Currently the rest of the lesson is only available within the source code
201 |
--------------------------------------------------------------------------------
/assets/avatars/danger.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phinioxGlade/gbstudio-background-sprites-tutorial/78da63eb7554b0f163ebe931bde3ba46bf292bc4/assets/avatars/danger.png
--------------------------------------------------------------------------------
/assets/backgrounds/!tileset.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phinioxGlade/gbstudio-background-sprites-tutorial/78da63eb7554b0f163ebe931bde3ba46bf292bc4/assets/backgrounds/!tileset.png
--------------------------------------------------------------------------------
/assets/backgrounds/BackgroundSprites.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phinioxGlade/gbstudio-background-sprites-tutorial/78da63eb7554b0f163ebe931bde3ba46bf292bc4/assets/backgrounds/BackgroundSprites.png
--------------------------------------------------------------------------------
/assets/backgrounds/BackgroundSprites201.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phinioxGlade/gbstudio-background-sprites-tutorial/78da63eb7554b0f163ebe931bde3ba46bf292bc4/assets/backgrounds/BackgroundSprites201.png
--------------------------------------------------------------------------------
/assets/backgrounds/BackgroundSprites2010.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phinioxGlade/gbstudio-background-sprites-tutorial/78da63eb7554b0f163ebe931bde3ba46bf292bc4/assets/backgrounds/BackgroundSprites2010.png
--------------------------------------------------------------------------------
/assets/backgrounds/BackgroundSprites202.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phinioxGlade/gbstudio-background-sprites-tutorial/78da63eb7554b0f163ebe931bde3ba46bf292bc4/assets/backgrounds/BackgroundSprites202.png
--------------------------------------------------------------------------------
/assets/backgrounds/BackgroundSprites203.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phinioxGlade/gbstudio-background-sprites-tutorial/78da63eb7554b0f163ebe931bde3ba46bf292bc4/assets/backgrounds/BackgroundSprites203.png
--------------------------------------------------------------------------------
/assets/backgrounds/BackgroundSprites204.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phinioxGlade/gbstudio-background-sprites-tutorial/78da63eb7554b0f163ebe931bde3ba46bf292bc4/assets/backgrounds/BackgroundSprites204.png
--------------------------------------------------------------------------------
/assets/backgrounds/BackgroundSprites205.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phinioxGlade/gbstudio-background-sprites-tutorial/78da63eb7554b0f163ebe931bde3ba46bf292bc4/assets/backgrounds/BackgroundSprites205.png
--------------------------------------------------------------------------------
/assets/backgrounds/BackgroundSprites206.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phinioxGlade/gbstudio-background-sprites-tutorial/78da63eb7554b0f163ebe931bde3ba46bf292bc4/assets/backgrounds/BackgroundSprites206.png
--------------------------------------------------------------------------------
/assets/backgrounds/BackgroundSprites207.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phinioxGlade/gbstudio-background-sprites-tutorial/78da63eb7554b0f163ebe931bde3ba46bf292bc4/assets/backgrounds/BackgroundSprites207.png
--------------------------------------------------------------------------------
/assets/backgrounds/BackgroundSprites208.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phinioxGlade/gbstudio-background-sprites-tutorial/78da63eb7554b0f163ebe931bde3ba46bf292bc4/assets/backgrounds/BackgroundSprites208.png
--------------------------------------------------------------------------------
/assets/backgrounds/BackgroundSprites209.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phinioxGlade/gbstudio-background-sprites-tutorial/78da63eb7554b0f163ebe931bde3ba46bf292bc4/assets/backgrounds/BackgroundSprites209.png
--------------------------------------------------------------------------------
/assets/backgrounds/BackgroundSprites210.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phinioxGlade/gbstudio-background-sprites-tutorial/78da63eb7554b0f163ebe931bde3ba46bf292bc4/assets/backgrounds/BackgroundSprites210.png
--------------------------------------------------------------------------------
/assets/backgrounds/BackgroundSprites211.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phinioxGlade/gbstudio-background-sprites-tutorial/78da63eb7554b0f163ebe931bde3ba46bf292bc4/assets/backgrounds/BackgroundSprites211.png
--------------------------------------------------------------------------------
/assets/backgrounds/elavtor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phinioxGlade/gbstudio-background-sprites-tutorial/78da63eb7554b0f163ebe931bde3ba46bf292bc4/assets/backgrounds/elavtor.png
--------------------------------------------------------------------------------
/assets/backgrounds/hidden-path-wall.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phinioxGlade/gbstudio-background-sprites-tutorial/78da63eb7554b0f163ebe931bde3ba46bf292bc4/assets/backgrounds/hidden-path-wall.png
--------------------------------------------------------------------------------
/assets/backgrounds/hidden-path.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phinioxGlade/gbstudio-background-sprites-tutorial/78da63eb7554b0f163ebe931bde3ba46bf292bc4/assets/backgrounds/hidden-path.png
--------------------------------------------------------------------------------
/assets/backgrounds/layers.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phinioxGlade/gbstudio-background-sprites-tutorial/78da63eb7554b0f163ebe931bde3ba46bf292bc4/assets/backgrounds/layers.png
--------------------------------------------------------------------------------
/assets/backgrounds/menu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phinioxGlade/gbstudio-background-sprites-tutorial/78da63eb7554b0f163ebe931bde3ba46bf292bc4/assets/backgrounds/menu.png
--------------------------------------------------------------------------------
/assets/backgrounds/transparent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phinioxGlade/gbstudio-background-sprites-tutorial/78da63eb7554b0f163ebe931bde3ba46bf292bc4/assets/backgrounds/transparent.png
--------------------------------------------------------------------------------
/assets/backgrounds/water-tileset.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phinioxGlade/gbstudio-background-sprites-tutorial/78da63eb7554b0f163ebe931bde3ba46bf292bc4/assets/backgrounds/water-tileset.png
--------------------------------------------------------------------------------
/assets/emotes/anger.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phinioxGlade/gbstudio-background-sprites-tutorial/78da63eb7554b0f163ebe931bde3ba46bf292bc4/assets/emotes/anger.png
--------------------------------------------------------------------------------
/assets/emotes/love.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phinioxGlade/gbstudio-background-sprites-tutorial/78da63eb7554b0f163ebe931bde3ba46bf292bc4/assets/emotes/love.png
--------------------------------------------------------------------------------
/assets/emotes/music.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phinioxGlade/gbstudio-background-sprites-tutorial/78da63eb7554b0f163ebe931bde3ba46bf292bc4/assets/emotes/music.png
--------------------------------------------------------------------------------
/assets/emotes/pause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phinioxGlade/gbstudio-background-sprites-tutorial/78da63eb7554b0f163ebe931bde3ba46bf292bc4/assets/emotes/pause.png
--------------------------------------------------------------------------------
/assets/emotes/question.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phinioxGlade/gbstudio-background-sprites-tutorial/78da63eb7554b0f163ebe931bde3ba46bf292bc4/assets/emotes/question.png
--------------------------------------------------------------------------------
/assets/emotes/shock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phinioxGlade/gbstudio-background-sprites-tutorial/78da63eb7554b0f163ebe931bde3ba46bf292bc4/assets/emotes/shock.png
--------------------------------------------------------------------------------
/assets/emotes/sleep.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phinioxGlade/gbstudio-background-sprites-tutorial/78da63eb7554b0f163ebe931bde3ba46bf292bc4/assets/emotes/sleep.png
--------------------------------------------------------------------------------
/assets/emotes/sweat.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phinioxGlade/gbstudio-background-sprites-tutorial/78da63eb7554b0f163ebe931bde3ba46bf292bc4/assets/emotes/sweat.png
--------------------------------------------------------------------------------
/assets/fonts/gbs-mono.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "GBS Mono",
3 | "mapping": {}
4 | }
5 |
--------------------------------------------------------------------------------
/assets/fonts/gbs-mono.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phinioxGlade/gbstudio-background-sprites-tutorial/78da63eb7554b0f163ebe931bde3ba46bf292bc4/assets/fonts/gbs-mono.png
--------------------------------------------------------------------------------
/assets/fonts/gbs-var.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "GBS Variable Width",
3 | "mapping": {}
4 | }
5 |
--------------------------------------------------------------------------------
/assets/fonts/gbs-var.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phinioxGlade/gbstudio-background-sprites-tutorial/78da63eb7554b0f163ebe931bde3ba46bf292bc4/assets/fonts/gbs-var.png
--------------------------------------------------------------------------------
/assets/music/Rulz_BattleTheme.mod:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phinioxGlade/gbstudio-background-sprites-tutorial/78da63eb7554b0f163ebe931bde3ba46bf292bc4/assets/music/Rulz_BattleTheme.mod
--------------------------------------------------------------------------------
/assets/music/Rulz_BattleTheme.uge:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phinioxGlade/gbstudio-background-sprites-tutorial/78da63eb7554b0f163ebe931bde3ba46bf292bc4/assets/music/Rulz_BattleTheme.uge
--------------------------------------------------------------------------------
/assets/music/Rulz_FastPaceSpeedRace.mod:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phinioxGlade/gbstudio-background-sprites-tutorial/78da63eb7554b0f163ebe931bde3ba46bf292bc4/assets/music/Rulz_FastPaceSpeedRace.mod
--------------------------------------------------------------------------------
/assets/music/Rulz_FastPaceSpeedRace.uge:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phinioxGlade/gbstudio-background-sprites-tutorial/78da63eb7554b0f163ebe931bde3ba46bf292bc4/assets/music/Rulz_FastPaceSpeedRace.uge
--------------------------------------------------------------------------------
/assets/music/Rulz_GonaSpace.mod:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phinioxGlade/gbstudio-background-sprites-tutorial/78da63eb7554b0f163ebe931bde3ba46bf292bc4/assets/music/Rulz_GonaSpace.mod
--------------------------------------------------------------------------------
/assets/music/Rulz_GonaSpace.uge:
--------------------------------------------------------------------------------
1 |
2 | Duty 12.5% Duty 25%
3 | Duty 50% Duty 75% Duty 12.5% plink Duty 25% plink Duty 50% plink Duty 75% plink Square wave 12.5% Square wave 25% Square wave 50% Square wave 75%
Sawtooth wave
Triangle wave Sine wave Toothy Triangle Toothy Pointy Strange
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
Z
28 | Z
29 | Z
30 | Z
31 | Z Z
32 | Z
33 | Z
34 | Z
35 | Z
36 | Z
37 | Z
38 | Z Z
39 | Z
40 | Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z @Z @Z @Z @ @Z @Z @Z @ @Z @Z @Z @ @Z @Z @Z @ @Z @Z @Z @ @Z @Z @Z @ @Z @Z @Z @ @Z @Z @Z @ @Z @Z @Z @ @Z @Z @Z @ @Z @Z @Z @ @Z @Z @Z @ @Z @Z @Z @ @Z @Z @Z @ @Z @Z @Z @Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z ! Z " Z # Z $ Z % Z &