Skip to main content
Version: 4.0.0

Music Band

This effect allows creators to tap the various band members on the screen to create music, like an MIDI controller. This tutorial will show you how to import your own assets and attach them to the correct objects in the Music Band Template.

music band demo

Prepare

Before we get started, prepare a set of PNGs for a texture sequence. They should all share the same aspect ratio and resolution for best results. There are two states that a band member can be in, so you’ll want a texture sequence for “Dance” and one for “Tap”. We’ve provided some additional music band texture sequences here:

↓ music_band_characters_additional_sequence.zip

You’ll also want to prepare some audio files. These must be .mp3 files that don’t contain copyrighted material or you’ll receive an error while uploading. Here is an example of an audio file.

Open the Template

Start by opening Effect House, logging in with the account you want to use to publish your effect. Go to Templates and select Music Band.

open the music band template tutorial in effect house

Let the template load and then save your project to a folder of your choice to save your progress.

Import Assets

Import a new “Dance” texture sequence asset by clicking the Add button [+] > Import > Texture Sequence in the Assets panel.

import dance texture sequence asset in the assets panel

Select all “Dance” images and click Open.

select and open dance images

You’ll see a new texture sequence appear in the Assets window.

mushroom texture in the assets panel
tip

It’s recommend to rename and categorize your assets so you can find them easily. This is especially important when there are a lot of assets. To rename it, right-click > Rename and type the new name. Then click and drag it to the folder with the rest of the textures. You can delete the empty Textures folder.

rename the_ texture folder

Repeat these steps for the “Tap” version of your texture sequence as well.

Let’s import an audio file by clicking the Add button [+] > Import > From Computer in the Assets panel.

import from computer in the assets panel

Select your audio file and click Open.

open audio file

Wait for the audio file asset to import. Remember, if this file contains copyrighted material, it will fail to import.

Replace Assets

Let’s take a look at the Hierarchy panel to see how this project is setup.

replace assets in the hierarchy panel

Each band member contains three objects: one audio object, one idle dance state object, and one tap state object.

Let’s replace the Crow Beat object with the new assets we just imported. Expand the Crow Beat by clicking the arrow next to the object, then clicking CrowDanceState.

replace crow beat in the hierarchy panel

Navigate to the Animation Sequence component in the Inspector panel of the object and click Texture Sequence, then select the Dance sequence from the pop-up Assets window.

select dance sequence from assets window
tip

When replacing the Texture Sequence for Tap State, remember to check the frame number and update it in the corresponding subgraph.

If the frame number of your Tap State sequence is 4, find the CrowTapEventController and change the number from 3 to 4 of the TapStateSeq_FrameNum property.

change the frame number of the tap state

You can find the number of frames in the Duration field by clicking the Texture Sequence in the Hierarchy panel.

frame number in duration

Now, you will replace the audio that is played when the character is tapped.

Click CrowAudio in the Hierarchy panel.

replace the audio that is played
replace the audio that is played

Navigate to the Audio Player component in the Inspector panel of the object and click Audio File, then select the audio file from the pop-up Assets window. There are some additional settings here, such as Play Mode and Volume.

audio player component in inspector panel

Congratulations! Now you’ve customized the Music Band template and made it your own! If you have any questions, please feel free to reach out for help on our Discord.

Visual Scripting and Subgraph Deep Dive

Each of the following purple comment boxes is responsible for the behavior of a band member. Let’s take a closer look at the Crow Beat Control comment box.

control beat control subgraph

Here you can see all the references being passed into the subgraph. The first reference is the Image component of Dance State. The second is the Scene object of Dance State and the third is the Animation Sequence of Tap State. The fourth is the Scene object of Tap State and the last is the Audio Player from the crow’s Audio component.

To get a new reference, click the the Add button [+] next to a component’s details and select Get.

references passed to the subgraph

To inspect inside the subgraph, double-click it.

references passed to the subgraph

The node setup is relatively straightforward. Use the Image Tap node to Play the desired animation sequence via the Animation Sequence Controller. From there, you can simply toggle the visibility of the animation sequence to hide the one that is not currently playing. For example, when you tap the crow, it should show the “Tap” state animation sequence and hide the “Dance” state animation sequence.

nodes setup

The Audio Player Controller plays the audio file connected to the Audio Player.

audio player controller