# UE 4.25 Plug In

**URL:** https://qa.fmod.com/t/ue-4-25-plug-in/15736
**Category:** Unreal Engine
**Created:** [May 6, 2020, 5:57pm UTC](https://qa.fmod.com/t/ue-4-25-plug-in/15736 "2020-05-06T17:57:18Z")
**Posts on this page:** 9
**Page:** 1

<div class="post-metadata">

### Author: ![ThomasDimitri](https://avatars.discourse-cdn.com/v4/letter/t/e480ec/32.png) [@ThomasDimitri](https://qa.fmod.com/u/ThomasDimitri)
#### Post date: [May 6, 2020, 5:57pm UTC](https://qa.fmod.com/t/ue-4-25-plug-in/15736/1 "2020-05-06T17:57:18Z")

</div>

Hi everyone,

Do we have an eta on the 4.25 plug in or will the 4.24 one work?

Regards,

---

<div class="post-metadata">

### Author: ![jasiomusic](https://avatars.discourse-cdn.com/v4/letter/j/a5b964/32.png) [@jasiomusic](https://qa.fmod.com/u/jasiomusic)
#### Post date: [May 11, 2020, 9:29pm UTC](https://qa.fmod.com/t/ue-4-25-plug-in/15736/2 "2020-05-11T21:29:33Z")

</div>

I’m currently not able to get 4.25 to launch with 4.24 plugin files. I get this error -

" Message - Plugin ‘FMODStudio’ failed to load because module ‘FMODStudio’ could not be found. Please ensure the plugin is properly installed, otherwise consider disabling the plugin for this project."

---

<div class="post-metadata">

### Author: ![cameron-fmod](https://yyz2.discourse-cdn.com/flex036/user_avatar/qa.fmod.com/cameron-fmod/32/261_2.png) [@cameron-fmod](https://qa.fmod.com/u/cameron-fmod)
#### Post date: [May 14, 2020, 5:50am UTC](https://qa.fmod.com/t/ue-4-25-plug-in/15736/3 "2020-05-14T05:50:34Z")

</div>

The UE4.24 plugin won’t work with UE4.25, we are working on the integration for it but it was on hold while we got the latest release out. We will make an announcement when it is available to download.

---

<div class="post-metadata">

### Author: ![ThomasDimitri](https://avatars.discourse-cdn.com/v4/letter/t/e480ec/32.png) [@ThomasDimitri](https://qa.fmod.com/u/ThomasDimitri)
#### Post date: [May 14, 2020, 6:39pm UTC](https://qa.fmod.com/t/ue-4-25-plug-in/15736/4 "2020-05-14T18:39:43Z")

</div>

Ill keep an eye out, thanks Cameron!

---

<div class="post-metadata">

### Author: ![Camilo2ds](https://avatars.discourse-cdn.com/v4/letter/c/3be4f8/32.png) [@Camilo2ds](https://qa.fmod.com/u/Camilo2ds)
#### Post date: [May 16, 2020, 12:23am UTC](https://qa.fmod.com/t/ue-4-25-plug-in/15736/5 "2020-05-16T00:23:30Z")

</div>

I have made some changes to compile and open my project in UE4.25 and fmod 2.01.01 (we come from UE 4.22.2 and fmod 1.10.14).  
I can now play in the editor and most fmod events work fine (for testing prupposse)

These are my changes:

`FMODListener.cpp` \>\> Comment the lines 52 and 56 wit `MAX_FILTER_FREQUENCY ` references

`FMODStudioModule.cpp` \>\> remove `PLATFORM_QUAIL` from lines 410 and 428

`FMODChannelEditor.cpp` \>\> comment from line 25 to line 27

with these changes we can open the project in UE4.25 and detect other upgrade issues in our blueprints

also in project settings we setup the name of master bank in fmod section

from `Master` (the default value) to `Master Bank.`

I hope this help you while the awesome fmod team launch the new release

---

<div class="post-metadata">

### Author: ![othiel32](https://avatars.discourse-cdn.com/v4/letter/o/c57346/32.png) [@othiel32](https://qa.fmod.com/u/othiel32)
#### Post date: [May 21, 2020, 9:50pm UTC](https://qa.fmod.com/t/ue-4-25-plug-in/15736/6 "2020-05-21T21:50:51Z")

</div>

Sorry for the redundant question, but is there an estimate of when an update will be out for compatibility with UE 4.25? My team is eager to update in order to access some of the new features, and I’m hoping to assess how long it would be if we wait on an update to FMOD so that we can decide how to proceed.

Thanks!

---

<div class="post-metadata">

### Author: ![Camilo2ds](https://avatars.discourse-cdn.com/v4/letter/c/3be4f8/32.png) [@Camilo2ds](https://qa.fmod.com/u/Camilo2ds)
#### Post date: [May 22, 2020, 5:28pm UTC](https://qa.fmod.com/t/ue-4-25-plug-in/15736/7 "2020-05-22T17:28:36Z")

</div>

Here’s an Update to fix the pluging (for testing purposes)

`FMODListener.cpp` instead comment lines 52 and 56, add this include

```cpp
#include "AudioDefines.h"

```

`FMODStudioModule.cpp` \>\> instead remove `PLATFORM_QUAIL` from lines 410 and 428

add this define

```cpp
#if !defined(PLATFORM_QUAIL)
     #define PLATFORM_QUAIL 0
#endif

```

FMODChannelEditor.cpp \>\> instead comment from line 25 to line 27 you should add `#include "SEnumCombobox.h"`

and in `FMODStudioEditor.Build.cs`you should add `"EditorWidgets"` in ` PrivateDependencyModuleNames` something like this:

```cpp
PrivateDependencyModuleNames.AddRange(
                new string[]
                {
                    "Slate",
                    "SlateCore",
                    "Settings",
                    "EditorStyle",
                    "EditorWidgets",
                    "LevelEditor",
                    "AssetTools",
                    "AssetRegistry",
                    "PropertyEditor",
                    "WorkspaceMenuStructure",
                    "Sockets",
                    "LevelSequence",
                    "MainFrame",
                    "MovieScene",
                    "MovieSceneTracks",
                    "MovieSceneTools",
                    "ToolMenus"
                }
                );

```

also in project settings setup the name of master bank in fmod section

from Master (the default value) to Master Bank.

and thats a temporal fix while the incredible FMOD team launch a release for 4.25,  
**this is not a definitive solution, its just to allow to make build for testing**

---

<div class="post-metadata">

### Author: ![i4ugui](https://avatars.discourse-cdn.com/v4/letter/i/ed8c4c/32.png) [@i4ugui](https://qa.fmod.com/u/i4ugui)
#### Post date: [May 29, 2020, 7:18am UTC](https://qa.fmod.com/t/ue-4-25-plug-in/15736/8 "2020-05-29T07:18:46Z")

</div>

An almost the whole month has been a passed. Guys can you start migration work when a new preview version engine released? Or it is impossible to begin plugin migration work on the “unreal engine preview” builds?

---

<div class="post-metadata">

### Author: ![ttahgames](https://avatars.discourse-cdn.com/v4/letter/t/dec6dc/32.png) [@ttahgames](https://qa.fmod.com/u/ttahgames)
#### Post date: [May 30, 2020, 8:17am UTC](https://qa.fmod.com/t/ue-4-25-plug-in/15736/9 "2020-05-30T08:17:09Z")

</div>

In case anyone runs into the same problem, the fixes listed for FMODChannelEditors.cpp didn’t work for me. Instead, I changed lines 26-28 to:

```
> ChildSlot[MovieSceneToolHelpers::MakeEnumComboBox(InEnum,
> TAttribute<int32>::Create(TAttribute<int32>::FGetter::CreateSP(this, &SFMODEventControlKeyEditor::OnGetCurrentValueAsInt)),
> TBaseDelegate<void, int32, ESelectInfo::Type>::CreateSP(this, &SFMODEventControlKeyEditor::OnChangeKey))];

```

This way, opening the help menu won’t crash the editor.
