Questions et réponses de la communauté

Bienvenue sur le forum de questions et réponses d'Audiokinetic, propulsé par la communauté. C'est l'endroit où les utilisateurs de Wwise et Strata s'entraident. Pour obtenir une aide directe de notre équipe, veuillez utiliser la page « Tickets de soutien ». Pour signaler un bug, utilisez l'option Bug Report dans l'Audiokinetic Launcher. (Veuillez noter que les rapports de bug soumis au forum questions-réponses seront rejetés. L'utilisation de notre système de rapport de bug dédié garantit que votre rapport est vu par les bonnes personnes et a les meilleures chances d'être corrigé.)

Pour obtenir rapidement les meilleures réponses, suivez ces conseils lorsque vous posez une question :

  • Soyez précis : qu'essayez-vous de réaliser ou quel est le problème spécifique que vous rencontrez ?
  • Pensez à inclure les détails importants : incluez des détails tels que les versions de Wwise et du moteur de jeu, le système d'exploitation, etc.
  • Expliquez ce que vous avez essayé de faire : indiquez aux autres les mesures que vous avez déjà prises pour essayer de résoudre le problème.
  • Concentrez-vous sur les faits : décrivez les aspects techniques de votre problème. Se concentrer sur le problème aide les autres personnes à trouver rapidement une solution.

0 votes
What is the timeline for releasing support for Unreal 4.22?
dans General Discussion par Ben H. (250 points)

1 Réponse

+1 vote

This is now available in 2019.1.0.6947.1305

par Bernard R. (Audiokinetic) (35.8k points)
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;

}

}
...