├── .gitattributes ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── LICENSES.md ├── README.md ├── docs ├── index.md ├── media │ ├── favicon.png │ └── logo.png └── unity │ ├── agent-api.md │ ├── steps-to-make-it-work.md │ └── useful-tools.md ├── mkdocs.yml ├── setup └── setup.bat └── src ├── Native └── IL2CPP TTS Process │ └── IL2CPP_Process_Handling.cpp └── Unity ├── Editor ├── BaseAgentController.cs ├── CreateAgentTemplate.cs ├── CreateSettings.cs ├── CreateUNSManager.cs ├── EncryptionDecoding.cs ├── LoadLogLevel.cs ├── PromptTesting.cs └── UnityNeuroSpeech.Editor.asmdef ├── Runtime ├── AgentSettings.cs ├── AgentUtils.cs ├── ControllerModules │ ├── ControllerJsonDataModule.cs │ ├── ControllerOllamaModule.cs │ └── ControllerTTSModule.cs ├── RuntimeJsonData.cs ├── RuntimeVisible.cs └── UnityNeuroSpeech.Runtime.asmdef ├── Shared ├── SharedJsonData.cs ├── SharedVisible.cs └── UnityNeuroSpeech.Shared.asmdef └── Utils ├── EncryptionUtils.cs ├── LogUtils.cs ├── NativeUtils.cs ├── UnityNeuroSpeech.Utils.asmdef └── UtilsVisible.cs /.gitattributes: -------------------------------------------------------------------------------- 1 | *.bat linguist-detectable=true 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HardCodeDev777/UnityNeuroSpeech/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HardCodeDev777/UnityNeuroSpeech/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HardCodeDev777/UnityNeuroSpeech/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HardCodeDev777/UnityNeuroSpeech/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HardCodeDev777/UnityNeuroSpeech/HEAD/LICENSES.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HardCodeDev777/UnityNeuroSpeech/HEAD/README.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HardCodeDev777/UnityNeuroSpeech/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/media/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HardCodeDev777/UnityNeuroSpeech/HEAD/docs/media/favicon.png -------------------------------------------------------------------------------- /docs/media/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HardCodeDev777/UnityNeuroSpeech/HEAD/docs/media/logo.png -------------------------------------------------------------------------------- /docs/unity/agent-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HardCodeDev777/UnityNeuroSpeech/HEAD/docs/unity/agent-api.md -------------------------------------------------------------------------------- /docs/unity/steps-to-make-it-work.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HardCodeDev777/UnityNeuroSpeech/HEAD/docs/unity/steps-to-make-it-work.md -------------------------------------------------------------------------------- /docs/unity/useful-tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HardCodeDev777/UnityNeuroSpeech/HEAD/docs/unity/useful-tools.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HardCodeDev777/UnityNeuroSpeech/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /setup/setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HardCodeDev777/UnityNeuroSpeech/HEAD/setup/setup.bat -------------------------------------------------------------------------------- /src/Native/IL2CPP TTS Process/IL2CPP_Process_Handling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HardCodeDev777/UnityNeuroSpeech/HEAD/src/Native/IL2CPP TTS Process/IL2CPP_Process_Handling.cpp -------------------------------------------------------------------------------- /src/Unity/Editor/BaseAgentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HardCodeDev777/UnityNeuroSpeech/HEAD/src/Unity/Editor/BaseAgentController.cs -------------------------------------------------------------------------------- /src/Unity/Editor/CreateAgentTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HardCodeDev777/UnityNeuroSpeech/HEAD/src/Unity/Editor/CreateAgentTemplate.cs -------------------------------------------------------------------------------- /src/Unity/Editor/CreateSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HardCodeDev777/UnityNeuroSpeech/HEAD/src/Unity/Editor/CreateSettings.cs -------------------------------------------------------------------------------- /src/Unity/Editor/CreateUNSManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HardCodeDev777/UnityNeuroSpeech/HEAD/src/Unity/Editor/CreateUNSManager.cs -------------------------------------------------------------------------------- /src/Unity/Editor/EncryptionDecoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HardCodeDev777/UnityNeuroSpeech/HEAD/src/Unity/Editor/EncryptionDecoding.cs -------------------------------------------------------------------------------- /src/Unity/Editor/LoadLogLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HardCodeDev777/UnityNeuroSpeech/HEAD/src/Unity/Editor/LoadLogLevel.cs -------------------------------------------------------------------------------- /src/Unity/Editor/PromptTesting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HardCodeDev777/UnityNeuroSpeech/HEAD/src/Unity/Editor/PromptTesting.cs -------------------------------------------------------------------------------- /src/Unity/Editor/UnityNeuroSpeech.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HardCodeDev777/UnityNeuroSpeech/HEAD/src/Unity/Editor/UnityNeuroSpeech.Editor.asmdef -------------------------------------------------------------------------------- /src/Unity/Runtime/AgentSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HardCodeDev777/UnityNeuroSpeech/HEAD/src/Unity/Runtime/AgentSettings.cs -------------------------------------------------------------------------------- /src/Unity/Runtime/AgentUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HardCodeDev777/UnityNeuroSpeech/HEAD/src/Unity/Runtime/AgentUtils.cs -------------------------------------------------------------------------------- /src/Unity/Runtime/ControllerModules/ControllerJsonDataModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HardCodeDev777/UnityNeuroSpeech/HEAD/src/Unity/Runtime/ControllerModules/ControllerJsonDataModule.cs -------------------------------------------------------------------------------- /src/Unity/Runtime/ControllerModules/ControllerOllamaModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HardCodeDev777/UnityNeuroSpeech/HEAD/src/Unity/Runtime/ControllerModules/ControllerOllamaModule.cs -------------------------------------------------------------------------------- /src/Unity/Runtime/ControllerModules/ControllerTTSModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HardCodeDev777/UnityNeuroSpeech/HEAD/src/Unity/Runtime/ControllerModules/ControllerTTSModule.cs -------------------------------------------------------------------------------- /src/Unity/Runtime/RuntimeJsonData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HardCodeDev777/UnityNeuroSpeech/HEAD/src/Unity/Runtime/RuntimeJsonData.cs -------------------------------------------------------------------------------- /src/Unity/Runtime/RuntimeVisible.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | 3 | [assembly: InternalsVisibleTo("UnityNeuroSpeech.Editor")] -------------------------------------------------------------------------------- /src/Unity/Runtime/UnityNeuroSpeech.Runtime.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HardCodeDev777/UnityNeuroSpeech/HEAD/src/Unity/Runtime/UnityNeuroSpeech.Runtime.asmdef -------------------------------------------------------------------------------- /src/Unity/Shared/SharedJsonData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HardCodeDev777/UnityNeuroSpeech/HEAD/src/Unity/Shared/SharedJsonData.cs -------------------------------------------------------------------------------- /src/Unity/Shared/SharedVisible.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HardCodeDev777/UnityNeuroSpeech/HEAD/src/Unity/Shared/SharedVisible.cs -------------------------------------------------------------------------------- /src/Unity/Shared/UnityNeuroSpeech.Shared.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HardCodeDev777/UnityNeuroSpeech/HEAD/src/Unity/Shared/UnityNeuroSpeech.Shared.asmdef -------------------------------------------------------------------------------- /src/Unity/Utils/EncryptionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HardCodeDev777/UnityNeuroSpeech/HEAD/src/Unity/Utils/EncryptionUtils.cs -------------------------------------------------------------------------------- /src/Unity/Utils/LogUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HardCodeDev777/UnityNeuroSpeech/HEAD/src/Unity/Utils/LogUtils.cs -------------------------------------------------------------------------------- /src/Unity/Utils/NativeUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HardCodeDev777/UnityNeuroSpeech/HEAD/src/Unity/Utils/NativeUtils.cs -------------------------------------------------------------------------------- /src/Unity/Utils/UnityNeuroSpeech.Utils.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HardCodeDev777/UnityNeuroSpeech/HEAD/src/Unity/Utils/UnityNeuroSpeech.Utils.asmdef -------------------------------------------------------------------------------- /src/Unity/Utils/UtilsVisible.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HardCodeDev777/UnityNeuroSpeech/HEAD/src/Unity/Utils/UtilsVisible.cs --------------------------------------------------------------------------------