Convert JSON to Soundpack
Converts JSON Soundpacks to Thock soundpacks
Overview
The Convert JSON to Soundpack tool is a Unity Editor extension that helps you convert JSON files into SoundPack ScriptableObjects. This tool simplifies importing sound packs defined in JSON format into Unity, allowing for easy integration and management of sound assets.
Features
Convert JSON files into SoundPack ScriptableObjects.
Custom key mappings using an IntToKeyCodeTable.
Optionally copy sound files to the project directory.
Automatically generate fallback keys.
User-friendly GUI for configuration and execution.
JSON Structure
The JSON file should have the following structure:
Example
Usage
Opening the Tool
Open Unity.
Go to the menu bar and select
Tools > Thock > Convert Json To Soundpack
.The Convert JSON to Soundpack window will appear.
Configuring the Tool
Sound Pack JSON: Drag and drop your JSON file into this field.
Int To KeyCode Table: Select the
IntToKeyCodeTable
scriptable object.Name Identifier: The JSON key that contains the sound pack name (default is "name").
Key Identifier: The JSON key that contains the key mappings (default is "defines").
Generate Fallback Keys: Toggle whether to generate fallback keys.
Copy Sound File: Toggle whether to copy the sound file to the project directory.
Example Workflow
Prepare JSON File: Create a JSON file with the appropriate structure.
Open Tool: Open the Convert JSON to Soundpack tool from the Unity menu.
Configure Settings: Set the necessary fields in the tool.
Parse JSON: Click the parse button and wait for the confirmation message.
Verify Output: Check the created SoundPack ScriptableObject in your project directory.
Last updated