menu
 

社区问答

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

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

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

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
分类:General Discussion | 用户: J X. (140 分)

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.
...