版本
Wwise Unity Integration Documentation
|
如果要在 Linux 机器上测试您的 Unity 应用程序,您需要构建并将该应用程序部署到机器上. 当在 Unity Editor 中执行 Build
或 Build
and
Run
时,Unity 会生成一个包含已编译游戏的文件夹。复制该文件夹到 Linux 机器中,在构建文件夹中,双击 .x86_64文件,以启动游戏。
\aknoteLinux 上的 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
备注: | 根据机器的配置不同,要求可能会有所不同。对于其它设置的安装说明,请参考 libsdl.org。 |