menu
版本
2018.1.11.6987
2024.1.4.8780
2023.1.12.8706
2022.1.18.8567
2021.1.14.8108
2019.2.15.7667
2019.1.11.7296
2018.1.11.6987
2017.2.10.6745
2017.1.9.6501
2016.2.6.6153
2015.1.9.5624
2024.1.4.8780
2023.1.12.8706
2022.1.18.8567
2021.1.14.8108
2019.2.15.7667
2019.1.11.7296
2018.1.11.6987
2017.2.10.6745
2017.1.9.6501
2016.2.6.6153
2015.1.9.5624
Wwise Unity Integration Documentation
|
如果要在 Linux 机器上测试您的 Unity 应用程序,您需要构建并将该应用程序部署到机器上. 当在 Unity Editor 中执行 Build
或 Build
and
Run
时,Unity 会生成一个包含已编译游戏的文件夹。复制该文件夹到 Linux 机器中,在构建文件夹中,双击 .x86(32 位的构建)或者 .x86_64(64 位的构建)文件,以启动游戏。
info | 备注: | Linux 上的 Wwise Unity Integration,需要在机器上安装 libSDL2 了才能运行。如果不安装,那么在启动游戏时,"DLLNotFoundException" 消息会显示出来。 |
如果要为 Ubuntu 12.04 安装 libSDL2
,请遵循下列步骤:
sudo apt-get install build-essential libasound2-dev
wget http://www.libsdl.org/release/SDL2-2.0.3.tar.gz
tar -zxvf SDL2-2.0.3.tar.gz
cd SDL2-2.0.3
./configure
make
sudo make install
sudo ldconfig
info | 备注: | 根据机器的配置不同,要求可能会有所不同。对于其它设置的安装说明,请参考 libsdl.org。 |