コミュニティQ&A

Audiokineticのコミュニティ主導のQ&Aフォーラムへようこそ。ここはWwiseとStrataのユーザのみなさまがお互いに協力し合う場です。弊社チームによる直接のサポートをご希望の場合はサポートチケットページをご利用ください。バグを報告するには、Audiokinetic LauncherのBug Reportオプションをご利用ください。(Q&AフォーラムではBug Reportを受け付けておりませんのでご注意ください。専用のBug Reportシステムをご利用いただくことで、バグの報告が適切な担当部門に届き、修正される可能性が高まります。)

最適な回答を迅速に得られるよう、ご質問を投稿される際は以下のヒントをご参考ください。

  • 具体的に示す:何を達成したいのか、またはどんな問題に直面しているのかを具体的に示してください。
  • 重要な詳細情報を含める:Wwiseとゲームエンジンのバージョンやご利用のOSなど詳細情報を記載してください。
  • 試したことを説明する:すでに試してみたトラブルシューティングの手順を教えてください。
  • 事実に焦点を当てる:問題の技術的な事実を記載してください。問題に焦点を当てることで、ほかのユーザのみなさまが解決策を迅速に見つけやすくなります。

0 支持
Hi, all

I encountered a problem when trying to develop a custom plugin following the Doc creating a Lowpass Plugin https://www.audiokinetic.com/library/edge/?source=SDK&id=code_effectplugin_runthrough.html
 

after a process of
python "%WWISEROOT%/Scripts/Build/Plugins/wp.py" premake Windows_vc160
python "%WWISEROOT%/Scripts/Build/Plugins/wp.py" premake Authoring
python "%WWISEROOT%/Scripts/Build/Plugins/wp.py" build Windows_vc160 -c Release
python "%WWISEROOT%/Scripts/Build/Plugins/wp.py" build Authoring -c Release -x x64_vc160
python "%WWISEROOT%/Scripts/Build/Plugins/wp.py" build Documentation

python "%WWISEROOT%/Scripts/Build/Plugins/wp.py" package Common --version=XXXX.X.X.X
python "%WWISEROOT%/Scripts/Build/Plugins/wp.py" package Documentation --version=XXXX.X.X.X
python "%WWISEROOT%/Scripts/Build/Plugins/wp.py" package Windows_vc160 --version=XXXX.X.X.X
python "%WWISEROOT%/Scripts/Build/Plugins/wp.py" package Authoring --version=XXXX.X.X.X
python "%WWISEROOT%/Scripts/Build/Plugins/wp.py" generate-bundle --version=XXXX.X.X.X

and copied the output archives and bundle.json into a zip file.

and from the launcher Plug-ins tab, select add from Archive emits the error  "Could not retrieve information from server (Cannot install from C:\xxxxxxx\Lowpass The specified package is incompatible with the target)"

 

As a matter of fact, even a newly created plugin with not a single modification of code or anything produces the same error after the same process

 Wwise version: 2021.1.5.7749

Did i do anything wrong or miss any steps? just couldn't install the archived plugin from the launcher.

Any help would be highly appreciated!

 

Best Regards
J X. (140 ポイント) General Discussion

回答 1

0 支持
 
ベストアンサー
Validate that your bundle.json has the correct version that corresponds to the Wwise YEAR.MAJOR version.

By default, the bundle_template.json uses the YEAR.MAJOR version from your plug-in's version (format YEAR.MAJOR.MINOR.BUILD) to match a target Wwise version that is compatible. Note that the Plug-in API remains stable across minor releases.
For example, for Wwise 2021.1.5.749, you would need to pass a plug-in version to "package" and "generate-bundle" of the form 2021.1.x.x, and this will fill in the fields productDependentData.targetWwiseVersion.year and productDependentData.targetWwiseVersion.major in the generated bundle.json file with 2021 and 1, respectively.

If you wish to use a custom version scheme for your plug-in, you can edit bundle_template.json and set the properties of productDependentData.targetWwiseVersion manually to the YEAR.MAJOR version of Wwise you target.
Samuel L. (Audiokinetic) (23.6k ポイント)
J X. 選択
Thanks Samuel!
Changing the version of the "package" and "generate-bundle" command to match that of the Wwise version solves the issue.
...