This page has been translated automatically.
Видеоуроки
Интерфейс
Основы
Продвинутый уровень
Подсказки и советы
Основы
Программирование на C#
Рендеринг
Профессиональный уровень (SIM)
Принципы работы
Свойства (properties)
Компонентная Система
Рендер
Физика
Редактор UnigineEditor
Обзор интерфейса
Работа с ассетами
Контроль версий
Настройки и предпочтения
Работа с проектами
Настройка параметров ноды
Setting Up Materials
Настройка свойств
Освещение
Sandworm
Использование инструментов редактора для конкретных задач
Расширение функционала редактора
Встроенные объекты
Ноды (Nodes)
Объекты (Objects)
Эффекты
Декали
Источники света
Geodetics
World-ноды
Звуковые объекты
Объекты поиска пути
Player-ноды
Программирование
Основы
Настройка среды разработки
Примеры использования
C++
C#
UnigineScript
UUSL (Unified UNIGINE Shader Language)
Плагины
Форматы файлов
Материалы и шейдеры
Rebuilding the Engine Tools
Интерфейс пользователя (GUI)
Двойная точность координат
API
Containers
Common Functionality
Controls-Related Classes
Engine-Related Classes
Filesystem Functionality
GUI-Related Classes
Math Functionality
Node-Related Classes
Objects-Related Classes
Networking Functionality
Pathfinding-Related Classes
Physics-Related Classes
Plugins-Related Classes
IG Plugin
CIGIConnector Plugin
Rendering-Related Classes
Работа с контентом
Оптимизация контента
Материалы
Визуальный редактор материалов
Сэмплы материалов
Material Nodes Library
Miscellaneous
Input
Math
Matrix
Textures
Art Samples
Учебные материалы
Внимание! Эта версия документация УСТАРЕЛА, поскольку относится к более ранней версии SDK! Пожалуйста, переключитесь на самую актуальную документацию для последней версии SDK.
Внимание! Эта версия документации описывает устаревшую версию SDK, которая больше не поддерживается! Пожалуйста, обновитесь до последней версии SDK.

Sounds

C++ FMODCore#

UNIGINE integration with FMOD Core (before running this sample, please download FMOD x64 libraries from Engine section on the official web-site: https://www.fmod.com/download).

Then install FMOD Plugin depending on your computer's operating system:

  • For Windows:

    1. Install the FMOD engine.
    2. Go to the sample folder \source\samples\3rdparty\FMODCore and copy here the following DLL’s from the FMOD installation folder:

      • fmod.dll, fmodL.dll from /api/core/lib/x64/
      • fmodstudio.dll, fmodstudioL.dll from /api/studio/lib/x64/
    3. Open the sample in IDE (click Edit in IDE), then build it and launch.
  • For Linux:

    1. Unzip the archive.
    2. Go to the sample folder \source\samples\3rdparty\FMODCore and copy here the following files from the FMOD folder:

      • libfmod.so, libfmod.so.13, libfmod.so.13.18, libfmodL.so, libfmodL.so.13, libfmodL.so.13.18 - everything from /api/core/lib/x84_64/
      • libfmodstudio.so, libfmodstudio.so.13, libfmodstudio.so.13.18, libfmodstudioL.so, libfmodstudioL.so.13, libfmodstudioL.so.13.18 - everything from /api/studio/lib/x84_64/
    3. Go to the directory containing a CmakeLists.txt file and build a project with cmake commands:
    4. Source code
      $ cmake -H. -B./junk -DCMAKE_BUILD_TYPE=Release
      $ cmake --build ./junk --config Release --target 3rdPartyCppFMODCore
    5. Then launch the sample from SDK Browser by clicking the Run button or launch FMODCore.py from \source\samples\3rdparty\FMODCore.

C++ FMODStudio#

UNIGINE integration with FMOD Studio (before running this sample, please download FMOD x64 libraries from Studio section on the official web-site: https://www.fmod.com/download).

Then install FMOD Plugin depending on your computer's operating system:

  • For Windows:

    1. Install the FMOD studio.
    2. Go to the sample folder \source\samples\3rdparty\FMODStudio and copy here the following DLL’s from the FMOD installation folder:

      • fmod.dll, fmodL.dll from /api/core/lib/x64/
      • fmodstudio.dll, fmodstudioL.dll from /api/studio/lib/x64/
    3. Open the sample in IDE (click Edit in IDE), then build it and launch.
  • For Linux:

    1. Unzip the archive.
    2. Go to the sample folder \source\samples\3rdparty\FMODStudio and copy here the following files from the FMOD folder:

      • libfmod.so, libfmod.so.13, libfmod.so.13.18, libfmodL.so, libfmodL.so.13, libfmodL.so.13.18 - everything from /api/core/lib/x84_64/
      • libfmodstudio.so, libfmodstudio.so.13, libfmodstudio.so.13.18, libfmodstudioL.so, libfmodstudioL.so.13, libfmodstudioL.so.13.18 - everything from /api/studio/lib/x84_64/
    3. Go to the directory containing a CmakeLists.txt file and build a project with cmake commands:
    4. Source code
      $ cmake -H. -B./junk -DCMAKE_BUILD_TYPE=Release
      $ cmake --build ./junk --config Release --target 3rdPartyCppFMODStudio
    5. Then launch the sample from SDK Browser by clicking the Run button or launch FMODStudio.py from \source\samples\3rdparty\FMODStudio.

C# FMODCore#

UNIGINE integration with FMOD Core (before running this sample, please download FMOD x64 libraries from Engine section on the official web-site: https://www.fmod.com/download).

Then install FMOD Plugin depending on your computer's operating system:

  • For Windows:

    1. Install the FMOD engine.
    2. Go to the sample folder \source\csharp\samples\3rdparty\FMODCore and copy here the following DLL’s from the FMOD installation folder:

      • fmod.dll, fmodL.dll from /api/core/lib/x64/
      • fmodstudio.dll, fmodstudioL.dll from /api/studio/lib/x64/
    3. Launch the sample from SDK Browser by clicking the Run button, or launch FMODCore.py from \source\csharp\samples\3rdparty\FMODCore or FMODCore.bat.
  • For Linux:

    1. Unzip the archive.
    2. Go to the sample folder \source\csharp\samples\3rdparty\FMODCore and copy here the following files from the FMOD folder:

      • libfmod.so, libfmod.so.13, libfmod.so.13.18, libfmodL.so, libfmodL.so.13, libfmodL.so.13.18 - everything from /api/core/lib/x84_64/
      • libfmodstudio.so, libfmodstudio.so.13, libfmodstudio.so.13.18, libfmodstudioL.so, libfmodstudioL.so.13, libfmodstudioL.so.13.18 - everything from /api/studio/lib/x84_64/
    3. Then launch the sample from SDK Browser by clicking the Run button or launch FMODCore.py from \source\csharp\samples\3rdparty\FMODCore.

C# FMODStudio#

UNIGINE integration with FMOD Studio (before running this sample, please download FMOD x64 libraries from Studio section on the official web-site: https://www.fmod.com/download).

Then install FMOD Plugin depending on your computer's operating system:

  • For Windows:

    1. Install the FMOD studio.
    2. Go to the sample folder \source\csharp\samples\3rdparty\FMODStudio and copy here the following DLL’s from the FMOD installation folder:

      • fmod.dll, fmodL.dll from /api/core/lib/x64/
      • fmodstudio.dll, fmodstudioL.dll from /api/studio/lib/x64/
    3. Launch the sample from SDK Browser by clicking the Run button, or launch FMODStudio.py from \source\csharp\samples\3rdparty\FMODStudio or FMODStudio.bat.
  • For Linux:

    1. Unzip the archive.
    2. Go to the sample folder \source\csharp\samples\3rdparty\FMODStudio and copy here the following files from the FMOD folder:

      • libfmod.so, libfmod.so.13, libfmod.so.13.18, libfmodL.so, libfmodL.so.13, libfmodL.so.13.18 - everything from /api/core/lib/x84_64/
      • libfmodstudio.so, libfmodstudio.so.13, libfmodstudio.so.13.18, libfmodstudioL.so, libfmodstudioL.so.13, libfmodstudioL.so.13.18 - everything from /api/studio/lib/x84_64/
    3. Then launch the sample from SDK Browser by clicking the Run button or launch FMODStudio.py from \source\csharp\samples\3rdparty\FMODStudio.
Last update: 11.09.2024
Build: ()