# Confused getting started with FMOD 2.1 (or 2.2)

**URL:** https://qa.fmod.com/t/confused-getting-started-with-fmod-2-1-or-2-2/17116
**Category:** Unity
**Created:** [April 26, 2021, 2:52pm UTC](https://qa.fmod.com/t/confused-getting-started-with-fmod-2-1-or-2-2/17116 "2021-04-26T14:52:55Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![paul.masristone](https://yyz2.discourse-cdn.com/flex036/user_avatar/qa.fmod.com/paul.masristone/32/2165_2.png) [@paul.masristone](https://qa.fmod.com/u/paul.masristone)
#### Post date: [April 26, 2021, 2:52pm UTC](https://qa.fmod.com/t/confused-getting-started-with-fmod-2-1-or-2-2/17116/1 "2021-04-26T14:52:55Z")

</div>

I’m new to FMOD and looking to get going using it in Unity.

I’ve followed the Kart tutorial, but in searching for tutorials to extend my knowledge further, they all seem outdated and use different syntax, so I’m confused.

In the Kart tutorial, it says to add a FMOD Studio Event Emitter component and to use

```
var emitter = GetComponent<FMODUnity.StudioEventEmitter>();
emitter.SetParameter("RPM", effectiveRPM);

```

and elsewhere I see I can play a sound from code with

```
emitter.Play();

```

However when I look at other tutorials on the FMOD site (e.g. Survival Shooter or Celeste), I can see these were created for _very_ old versions of Unity, and the projects are no longer available… making the tutorials impossible to follow along. These suggest the following code (and I see this same code in other tutorials on YouTube as recent as 2 years old).

```
FMODUnity.RuntimeManager.PlayOneShot("event:/my-event-here", transform.position);

```

Is this current valid code? Is it recommended or should I avoid this?

In short… where can I look for up-to-date tutorials to learn more than is covered in the Kart tutorial? For 2.1 (or maybe even 2.2)?

---

<div class="post-metadata">

### Author: ![joseph](https://yyz2.discourse-cdn.com/flex036/user_avatar/qa.fmod.com/joseph/32/264_2.png) [@joseph](https://qa.fmod.com/u/joseph)
#### Post date: [April 27, 2021, 3:50am UTC](https://qa.fmod.com/t/confused-getting-started-with-fmod-2-1-or-2-2/17116/2 "2021-04-27T03:50:28Z")

</div>

> [@paul.masristone](#):
>
> where can I look for up-to-date tutorials to learn more than is covered in the Kart tutorial? For 2.1 (or maybe even 2.2)?

The Kart tutorial is at present the only tutorial that’s been updated to FMOD Studio version 2.01. (We’re working on updating it to version 2.02 currently.)

> [@paul.masristone](#):
>
> However when I look at other tutorials on the FMOD site (e.g. Survival Shooter or Celeste), I can see these were created for _very_ old versions of Unity, and the projects are no longer available…

You are mistaken. Both the surivival shooter project and the Celeste FMOD Studio project are both available from our [downloads](https://www.fmod.com/download) page. However, as you have noted, they are both designed for older versions of FMOD Studio and the FMOD Studio Unity integration, and so include some content that would have been achieved differently in more recent versions.

---

<div class="post-metadata">

### Author: ![paul.masristone](https://yyz2.discourse-cdn.com/flex036/user_avatar/qa.fmod.com/paul.masristone/32/2165_2.png) [@paul.masristone](https://qa.fmod.com/u/paul.masristone)
#### Post date: [April 27, 2021, 9:45am UTC](https://qa.fmod.com/t/confused-getting-started-with-fmod-2-1-or-2-2/17116/3 "2021-04-27T09:45:51Z")

</div>

As the Kart tutorial only covers a limited use case, are there any tutorials you can recommend elsewhere on the web / YouTube, where I can learn more about FMOD for version 2.X?

---

<div class="post-metadata">

### Author: ![Alcibiade](https://yyz2.discourse-cdn.com/flex036/user_avatar/qa.fmod.com/alcibiade/32/4284_2.png) [@Alcibiade](https://qa.fmod.com/u/Alcibiade)
#### Post date: [April 27, 2021, 11:53am UTC](https://qa.fmod.com/t/confused-getting-started-with-fmod-2-1-or-2-2/17116/4 "2021-04-27T11:53:33Z")

</div>

Hi,  
It seems you’re specifically looking to FMOD Unity integration tutorials, which, as you found out, are often a bit outdated. However, if you’re looking for ressources to learn FMOD Studio, there are several valid ones. In my opinion the most useful are the Exemples project installed with FMOD (read each event description!) and the Celeste project. Despite Celeste project has been done with an old FMOD version (1.10), FMOD core concepts haven’t really change since then, hence is still valuable.

---

<div class="post-metadata">

### Author: ![reddoorsound](https://avatars.discourse-cdn.com/v4/letter/r/ac8455/32.png) [@reddoorsound](https://qa.fmod.com/u/reddoorsound)
#### Post date: [April 27, 2021, 10:19pm UTC](https://qa.fmod.com/t/confused-getting-started-with-fmod-2-1-or-2-2/17116/5 "2021-04-27T22:19:17Z")

</div>

Certainly, the FMOD team does need to work more on meaningful tutorials for those who would like to learn FMOD. Having said that, I can add to Alcibiade that the best way forward to me is always to work on some real (even if that’s really basic stuff) projects. Karting, V Village, etc. are great examples. Also you can find some tutorials on Youtube, but then again, those will become more useful when you have specific tasks at hand or problems to solve.
