社区问答

欢迎来到 Audiokinetic 社区问答论坛。在此,Wwise 和 Strata 用户可互帮互助。如需我们团队直接提供协助,请前往技术支持申请单页面。若要报告问题,请在 Audiokinetic Launcher 中选择“报告错误”选项(注意,问答论坛并不会接收错误报告)。我们内部设有专门的错误报告系统,会有专人查看报告并设法解决问题。

要想尽快得到满意的解答,请在提问时注意以下几点:

  • 描述尽量具体:比如,想达到什么样的目的,或者具体哪里有问题。
  • 包含关键细节:比如,Wwise 和游戏引擎版本以及所用操作系统等等。
  • 阐明所做努力:阐明自己为了排除故障都采取了哪些措施。
  • 聚焦问题本身:聚焦于问题本身的相关技术细节,以便别人可以快速找到解决方案。

0 投票
What is the timeline for releasing support for Unreal 4.22?
分类:General Discussion | 用户: Ben H. (250 分)

1个回答

+1 投票

This is now available in 2019.1.0.6947.1305

用户: Bernard R. (Audiokinetic) (35.8k 分)
Awesome ! Thank you !
Thanks for the tip!

Where can we see that final part of the version number? The installer only seems to show the 6947 version number.
I'm trying to integrate this 4.22 version as an Engine Plug-In into a vanilla PC version of UE4 4.22 and encountering warnings such as:-

AkAudio\AkAudio.Build.cs(436,39): warning CS0618: 'UnrealBuildTool.ModuleRules.UEBuildFramework' is obsolete: 'The UEBuildFramework class has been deprecated in UE 4.22. Please use the Framework class instead.'

And errors such as:-

AkGameplayTypes.h(360) : LogCompile: Error: An explicit Category specifier is required for any property exposed to the editor or Blueprints in an Engine module.

AkAudio/Classes/InitializationSettings/AkInitializationSettings.h(96) : LogCompile: Error: An explicit Category specifier is required for any property exposed to the editor or Blueprints in an Engine module.

Anyone else seeing the same problems?

Ollie
Hi,

I have encountered the same problems and I had posted them here: https://www.audiokinetic.com/qa/5751/xboxone-wwise-2019-6947-unreal-integration-xboxone-problems

No one has never answer to me... Some errors (like #include "Paths.h") are coming from UE4.20 --> UE4.21 migration where some files were moved under Misc/ folder.
But the Category Tag is a big error. Any UPROPERTY exposed to editor by Engine plugins/modules should have one! I simply add it in every line, but I'm waiting for something by Audiokinetic.

I have just downloaded 2019.1.0.6947.1305 (before I was using 1299) to see if something has changed, but those classes are exactly the same.
Beside the problem as above, i also met a crash when launching editor, and i might fixed it but please check it.

Engine\Plugins\Wwise\Source\AudiokineticTools\Private\AkAudioBankGenerationHelpers.cpp

//IProjectManager& ProjectManager = IProjectManager::Get();

//auto& TargetPlatforms = ProjectManager.GetCurrentProject()->TargetPlatforms;

//if (TargetPlatforms.Num() > 0)

//{

// TSet<FString> AvailablePlatforms;

// for (const auto& TargetPlatform : TargetPlatforms)

// {

// AvailablePlatforms.Add(TargetPlatform.ToString());

// }



// auto Intersection = SupportedPlatforms.Intersect(AvailablePlatforms);

// if (Intersection.Num() > 0)

// {

// SupportedPlatforms = Intersection;

// }

//}

TArray<ITargetPlatform*> Platforms = GetTargetPlatformManager()->GetTargetPlatforms();

if (Platforms.Num() > 0)

{

TSet<FString> AvailablePlatforms;

for (ITargetPlatform* CheckPlatform : Platforms)

{

if (CheckPlatform)

{

AvailablePlatforms.Add(*(CheckPlatform->PlatformName()));

}

}

auto Intersection = SupportedPlatforms.Intersect(AvailablePlatforms);

if (Intersection.Num() > 0)

{

SupportedPlatforms = Intersection;

}

}
...