gg.easy.airship 0.1.2196 → 0.1.2203

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (525) hide show
  1. package/.github/workflows/package-deployment.yaml +5 -3
  2. package/Editor/AirAsset/AirAssetBundleEditor.cs +4 -4
  3. package/Editor/AirshipBuildInfoEditor.cs +4 -4
  4. package/Editor/AirshipComponentDropdown.cs +1 -1
  5. package/Editor/AirshipEditors/AirshipCustomEditors.cs +26 -21
  6. package/Editor/AirshipEditors/AirshipEditor.cs +1 -18
  7. package/Editor/AirshipEditors/CustomAirshipEditorAttribute.cs +12 -0
  8. package/Editor/AirshipEditors/Properties/AirshipEditorExtensions.cs +8 -0
  9. package/Editor/AirshipEditors/Properties/AirshipSerializedValue.cs +46 -0
  10. package/Editor/BuildMenu.cs +19 -2
  11. package/Editor/CopyAssetBundlePathToClipboard.cs +3 -2
  12. package/Editor/CreateAssetBundles.cs +6 -6
  13. package/Editor/NetworkPrefabManager.cs +1 -1
  14. package/Editor/Packages/AirshipPackageAutoUpdater.cs +1 -1
  15. package/Editor/Packages/AirshipPackagesWindow.cs +3 -3
  16. package/Editor/Publish/Deploy.cs +2 -2
  17. package/Editor/SetStartupScene.cs +1 -1
  18. package/Editor/StreamingAssets.cs +3 -4
  19. package/Editor/TypescriptServices/Compiler/TypescriptCompilationService.cs +8 -5
  20. package/Editor/Util/AirshipEditorGUI.cs +23 -0
  21. package/Runtime/Code/AirAssetBundle/AirAssetBundle.cs +1 -1
  22. package/Runtime/Code/AirshipConst.cs +3 -2
  23. package/Runtime/Code/Auth/Socket/SocketManager.cs +1 -1
  24. package/Runtime/Code/Bootstrap/ServerBootstrap.cs +2 -2
  25. package/Runtime/Code/Bundles/AssetBridge.cs +14 -14
  26. package/Runtime/Code/Bundles/NetworkPrefabLoader.cs +2 -1
  27. package/Runtime/Code/Bundles/SystemRoot.cs +54 -53
  28. package/Runtime/Code/GameConfig/GameConfig.cs +4 -3
  29. package/Runtime/Code/Http/Internal/InternalHttpManager.cs +2 -7
  30. package/Runtime/Code/Http/Public/HttpManager.cs +4 -0
  31. package/Runtime/Code/Luau/AirshipComponent.cs +2 -2
  32. package/Runtime/Code/Luau/AirshipScriptableObject.cs +5 -4
  33. package/Runtime/Code/Luau/LuauCore.cs +9 -0
  34. package/Runtime/Code/Luau/LuauCoreCallbacks.cs +7 -3
  35. package/Runtime/Code/Luau/LuauPlugin.cs +85 -24
  36. package/Runtime/Code/LuauAPI/Bridge.cs +27 -13
  37. package/Runtime/Code/Misc/AirshipBuildInfo.cs +1 -2
  38. package/Runtime/Code/Network/Simulation/AirshipNetworkedObject.cs +6 -2
  39. package/Runtime/Code/Network/StateSystem/AirshipNetworkedStateManager.cs +5 -1
  40. package/Runtime/Code/Network/UdpPingTool.cs +5 -2
  41. package/Runtime/Code/NetworkRateLimit/NetworkLimiter.asmdef +3 -0
  42. package/Runtime/Code/NetworkRateLimit/NetworkLimiter.asmdef.meta +3 -0
  43. package/Runtime/Code/NetworkRateLimit/NetworkRateLimiter.cs +36 -0
  44. package/Runtime/Code/NetworkRateLimit/NetworkRateLimiter.cs.meta +3 -0
  45. package/Runtime/Code/NetworkRateLimit.meta +3 -0
  46. package/Runtime/Code/Player/Character/MovementSystems/Character/CharacterMovement.cs +4 -2
  47. package/Runtime/Code/Quality/QualityManager.cs +10 -4
  48. package/Runtime/Code/TSCodeGen/Editor/CsToTs/TypeScript/Helper.cs +1 -1
  49. package/Runtime/Code/TSCodeGen/TypeGenerator.cs +2 -2
  50. package/Runtime/Code/Voice/AirshipUniVoice.cs +251 -0
  51. package/Runtime/Code/Voice/AirshipUniVoice.cs.meta +3 -0
  52. package/Runtime/Code/Voice/AirshipVoiceUtils.cs +19 -0
  53. package/Runtime/Code/Voice/AirshipVoiceUtils.cs.meta +3 -0
  54. package/Runtime/Code/Voice/PlayerAudioSourceOutput.cs +66 -0
  55. package/Runtime/Code/Voice/PlayerAudioSourceOutput.cs.meta +3 -0
  56. package/Runtime/Code/Voice/SpeakingLevelEventFilter.cs +29 -0
  57. package/Runtime/Code/Voice/SpeakingLevelEventFilter.cs.meta +3 -0
  58. package/Runtime/Code/Voice.meta +3 -0
  59. package/Runtime/Code/VoxelWorld/VoxelBlocks.cs +1 -1
  60. package/Runtime/DevConsole/Runtime/DevConsoleMono.cs +4 -4
  61. package/Runtime/Plugins/Android/libLuauPlugin.so +0 -0
  62. package/Runtime/Plugins/Linux/libLuauPlugin.so +0 -0
  63. package/Runtime/Plugins/Mac/LuauPlugin.bundle/Contents/MacOS/LuauPlugin +0 -0
  64. package/Runtime/Plugins/Windows/x64/LuauPlugin.dll +0 -0
  65. package/Runtime/Plugins/iOS/LuauPluginIos.a +0 -0
  66. package/Runtime/Scenes/CoreScene.unity +6 -24
  67. package/ThirdParty/Adrenak.BRW/README.md +12 -0
  68. package/ThirdParty/{UniVoice.UniMicInput → Adrenak.BRW}/README.md.meta +1 -1
  69. package/ThirdParty/Adrenak.BRW/Runtime/Adrenak.BRW.asmdef +3 -0
  70. package/ThirdParty/{UniVoice.AudioSourceOutput/Runtime/Adrenak.UniVoice.AudioSourceOutput.asmdef.meta → Adrenak.BRW/Runtime/Adrenak.BRW.asmdef.meta} +1 -1
  71. package/ThirdParty/Adrenak.BRW/Runtime/BytesReader.cs +342 -0
  72. package/ThirdParty/{UniVoice.AudioSourceOutput/Runtime/CircularAudioClip.cs.meta → Adrenak.BRW/Runtime/BytesReader.cs.meta} +1 -1
  73. package/ThirdParty/Adrenak.BRW/Runtime/BytesWriter.cs +401 -0
  74. package/ThirdParty/{UniVoice.AudioSourceOutput/Runtime/Extensions.cs.meta → Adrenak.BRW/Runtime/BytesWriter.cs.meta} +1 -1
  75. package/ThirdParty/Adrenak.BRW/Runtime/EndianUtility.cs +34 -0
  76. package/ThirdParty/{UniVoice.AudioSourceOutput/Runtime/InbuiltAudioBuffer.cs.meta → Adrenak.BRW/Runtime/EndianUtility.cs.meta} +1 -1
  77. package/ThirdParty/{UniVoice.UniMicInput → Adrenak.BRW}/Runtime.meta +1 -1
  78. package/ThirdParty/Adrenak.BRW/package.json +15 -0
  79. package/ThirdParty/{UniVoice.AudioSourceOutput → Adrenak.BRW}/package.json.meta +1 -1
  80. package/ThirdParty/{UniVoice.AudioSourceOutput.meta → Adrenak.BRW.meta} +1 -1
  81. package/ThirdParty/Adrenak.RNNoise4Unity/LICENSE +32 -0
  82. package/ThirdParty/{UniVoice.UniMicInput → Adrenak.RNNoise4Unity}/LICENSE.meta +1 -1
  83. package/ThirdParty/Adrenak.RNNoise4Unity/Plugins/Android/arm64/librnnoise.so +0 -0
  84. package/ThirdParty/Adrenak.RNNoise4Unity/Plugins/Android/arm64/librnnoise.so.meta +70 -0
  85. package/ThirdParty/Adrenak.RNNoise4Unity/Plugins/Android/arm64.meta +8 -0
  86. package/ThirdParty/Adrenak.RNNoise4Unity/Plugins/Android/armeabi-v7a/librnnoise.so +0 -0
  87. package/ThirdParty/Adrenak.RNNoise4Unity/Plugins/Android/armeabi-v7a/librnnoise.so.meta +70 -0
  88. package/ThirdParty/Adrenak.RNNoise4Unity/Plugins/Android/armeabi-v7a.meta +8 -0
  89. package/ThirdParty/Adrenak.RNNoise4Unity/Plugins/Android.meta +8 -0
  90. package/ThirdParty/Adrenak.RNNoise4Unity/Plugins/Windows/x86_64/rnnoise.dll +0 -0
  91. package/ThirdParty/Adrenak.RNNoise4Unity/Plugins/Windows/x86_64/rnnoise.dll.meta +80 -0
  92. package/ThirdParty/Adrenak.RNNoise4Unity/Plugins/Windows/x86_64.meta +8 -0
  93. package/ThirdParty/Adrenak.RNNoise4Unity/Plugins/Windows.meta +8 -0
  94. package/ThirdParty/Adrenak.RNNoise4Unity/Plugins/iOS/librnnoise.a +0 -0
  95. package/ThirdParty/Adrenak.RNNoise4Unity/Plugins/iOS/librnnoise.a.meta +80 -0
  96. package/ThirdParty/Adrenak.RNNoise4Unity/Plugins/iOS.meta +8 -0
  97. package/ThirdParty/{UniVoice.UniMicInput.meta → Adrenak.RNNoise4Unity/Plugins.meta} +1 -1
  98. package/ThirdParty/{UniVoice.AudioSourceOutput/Runtime/Adrenak.UniVoice.AudioSourceOutput.asmdef → Adrenak.RNNoise4Unity/Runtime/Adrenak.RNNoise4Unity.Runtime.asmdef} +3 -3
  99. package/ThirdParty/{UniVoice.UniMicInput/Runtime/Adrenak.UniVoice.UniMicInput.asmdef.meta → Adrenak.RNNoise4Unity/Runtime/Adrenak.RNNoise4Unity.Runtime.asmdef.meta} +1 -1
  100. package/ThirdParty/Adrenak.RNNoise4Unity/Runtime/Denoiser.cs +131 -0
  101. package/ThirdParty/Adrenak.RNNoise4Unity/Runtime/Denoiser.cs.meta +11 -0
  102. package/ThirdParty/Adrenak.RNNoise4Unity/Runtime/Native.cs +29 -0
  103. package/ThirdParty/Adrenak.RNNoise4Unity/Runtime/Native.cs.meta +11 -0
  104. package/ThirdParty/{UniVoice.AudioSourceOutput → Adrenak.RNNoise4Unity}/Runtime.meta +1 -1
  105. package/ThirdParty/Adrenak.RNNoise4Unity/package.json +22 -0
  106. package/ThirdParty/{UniVoice.UniMicInput → Adrenak.RNNoise4Unity}/package.json.meta +1 -1
  107. package/ThirdParty/{UniMic/Samples.meta → Adrenak.RNNoise4Unity.meta} +1 -1
  108. package/ThirdParty/Adrenak.UniVoice/README.md +125 -0
  109. package/ThirdParty/Adrenak.UniVoice/Runtime/Adrenak.UniVoice.Runtime.asmdef +22 -0
  110. package/ThirdParty/Adrenak.UniVoice/Runtime/ClientSession.cs +300 -0
  111. package/ThirdParty/Adrenak.UniVoice/Runtime/ClientSession.cs.meta +11 -0
  112. package/ThirdParty/Adrenak.UniVoice/Runtime/Common/SimpleVad.cs +379 -0
  113. package/ThirdParty/Adrenak.UniVoice/Runtime/Common/SimpleVad.cs.meta +11 -0
  114. package/ThirdParty/Adrenak.UniVoice/Runtime/Common/Utils.cs +55 -0
  115. package/ThirdParty/Adrenak.UniVoice/Runtime/Common/Utils.cs.meta +11 -0
  116. package/ThirdParty/Adrenak.UniVoice/Runtime/Common/WavFileWriter.cs +124 -0
  117. package/ThirdParty/Adrenak.UniVoice/Runtime/Common/WavFileWriter.cs.meta +11 -0
  118. package/ThirdParty/Adrenak.UniVoice/Runtime/Common.meta +8 -0
  119. package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Filters/Concentus Opus Filters/ConcentusDecodeFilter.cs +80 -0
  120. package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Filters/Concentus Opus Filters/ConcentusDecodeFilter.cs.meta +11 -0
  121. package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Filters/Concentus Opus Filters/ConcentusEncodeFilter.cs +156 -0
  122. package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Filters/Concentus Opus Filters/ConcentusEncodeFilter.cs.meta +11 -0
  123. package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Filters/Concentus Opus Filters/ConcentusFrequencies.cs +31 -0
  124. package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Filters/Concentus Opus Filters/ConcentusFrequencies.cs.meta +11 -0
  125. package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Filters/Concentus Opus Filters.meta +8 -0
  126. package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Filters/GaussianAudioBlur.cs +90 -0
  127. package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Filters/GaussianAudioBlur.cs.meta +11 -0
  128. package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Filters/RNNoise/RNNoiseFilter.cs +26 -0
  129. package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Filters/RNNoise/RNNoiseFilter.cs.meta +11 -0
  130. package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Filters/RNNoise.meta +8 -0
  131. package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Filters/SimpleVadFilter.cs +17 -0
  132. package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Filters/SimpleVadFilter.cs.meta +11 -0
  133. package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Filters.meta +8 -0
  134. package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Inputs/EmptyAudioInput.cs +24 -0
  135. package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Inputs/EmptyAudioInput.cs.meta +11 -0
  136. package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Inputs/UniMicInput.cs +51 -0
  137. package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Inputs/UniMicInput.cs.meta +11 -0
  138. package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Inputs.meta +8 -0
  139. package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Networks/FakeNetwork.cs +6 -0
  140. package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Networks/FakeNetwork.cs.meta +11 -0
  141. package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Networks/Mirror/MirrorClient.cs +190 -0
  142. package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Networks/Mirror/MirrorClient.cs.meta +11 -0
  143. package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Networks/Mirror/MirrorMessage.cs +19 -0
  144. package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Networks/Mirror/MirrorMessage.cs.meta +11 -0
  145. package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Networks/Mirror/MirrorMessageTags.cs +14 -0
  146. package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Networks/Mirror/MirrorMessageTags.cs.meta +11 -0
  147. package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Networks/Mirror/MirrorModeObserver.cs +48 -0
  148. package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Networks/Mirror/MirrorModeObserver.cs.meta +11 -0
  149. package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Networks/Mirror/MirrorServer.cs +285 -0
  150. package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Networks/Mirror/MirrorServer.cs.meta +11 -0
  151. package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Networks/Mirror.meta +8 -0
  152. package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Networks.meta +8 -0
  153. package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Outputs/StreamedAudioSourceOutput.cs +56 -0
  154. package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Outputs/StreamedAudioSourceOutput.cs.meta +11 -0
  155. package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Outputs.meta +8 -0
  156. package/ThirdParty/Adrenak.UniVoice/Runtime/Impl.meta +8 -0
  157. package/ThirdParty/Adrenak.UniVoice/Runtime/Interfaces/IAudioClient.cs +81 -0
  158. package/ThirdParty/Adrenak.UniVoice/Runtime/Interfaces/IAudioClient.cs.meta +11 -0
  159. package/ThirdParty/Adrenak.UniVoice/Runtime/Interfaces/IAudioFilter.cs +10 -0
  160. package/ThirdParty/Adrenak.UniVoice/Runtime/Interfaces/IAudioFilter.cs.meta +11 -0
  161. package/ThirdParty/Adrenak.UniVoice/Runtime/Interfaces/IAudioInput.cs +13 -0
  162. package/ThirdParty/Adrenak.UniVoice/Runtime/Interfaces/IAudioOutput.cs +19 -0
  163. package/ThirdParty/Adrenak.UniVoice/Runtime/Interfaces/IAudioOutputFactory.cs +11 -0
  164. package/ThirdParty/Adrenak.UniVoice/Runtime/Interfaces/IAudioServer.cs +41 -0
  165. package/ThirdParty/Adrenak.UniVoice/Runtime/Interfaces/IAudioServer.cs.meta +11 -0
  166. package/ThirdParty/{UniVoice/Runtime/Types/ChatroomAudioSegment.cs → Adrenak.UniVoice/Runtime/Types/AudioFrame.cs} +7 -6
  167. package/ThirdParty/Adrenak.UniVoice/Runtime/Types/VoiceSettings.cs +73 -0
  168. package/ThirdParty/Adrenak.UniVoice/Runtime/Types/VoiceSettings.cs.meta +11 -0
  169. package/ThirdParty/Adrenak.UniVoice/package.json +39 -0
  170. package/ThirdParty/Adrenak.UniVoice.meta +8 -0
  171. package/ThirdParty/Concentus-Unity/LICENSE +38 -0
  172. package/ThirdParty/{UniVoice.AudioSourceOutput → Concentus-Unity}/LICENSE.meta +1 -1
  173. package/ThirdParty/Concentus-Unity/README.md +6 -0
  174. package/ThirdParty/{UniVoice.AudioSourceOutput → Concentus-Unity}/README.md.meta +1 -1
  175. package/ThirdParty/Concentus-Unity/Runtime/Celt/Bands.cs +2494 -0
  176. package/ThirdParty/Concentus-Unity/Runtime/Celt/Bands.cs.meta +11 -0
  177. package/ThirdParty/Concentus-Unity/Runtime/Celt/CWRS.cs +320 -0
  178. package/ThirdParty/Concentus-Unity/Runtime/Celt/CWRS.cs.meta +11 -0
  179. package/ThirdParty/Concentus-Unity/Runtime/Celt/CeltCommon.cs +1381 -0
  180. package/ThirdParty/Concentus-Unity/Runtime/Celt/CeltCommon.cs.meta +11 -0
  181. package/ThirdParty/Concentus-Unity/Runtime/Celt/CeltConstants.cs +93 -0
  182. package/ThirdParty/Concentus-Unity/Runtime/Celt/CeltConstants.cs.meta +11 -0
  183. package/ThirdParty/Concentus-Unity/Runtime/Celt/CeltLPC.cs +156 -0
  184. package/ThirdParty/Concentus-Unity/Runtime/Celt/CeltLPC.cs.meta +11 -0
  185. package/ThirdParty/Concentus-Unity/Runtime/Celt/CeltPitchXCorr.cs +140 -0
  186. package/ThirdParty/Concentus-Unity/Runtime/Celt/CeltPitchXCorr.cs.meta +11 -0
  187. package/ThirdParty/Concentus-Unity/Runtime/Celt/Enums/Spread.cs +45 -0
  188. package/ThirdParty/Concentus-Unity/Runtime/Celt/Enums/Spread.cs.meta +11 -0
  189. package/ThirdParty/Concentus-Unity/Runtime/Celt/Enums.meta +8 -0
  190. package/ThirdParty/Concentus-Unity/Runtime/Celt/Kernels.cs +371 -0
  191. package/ThirdParty/Concentus-Unity/Runtime/Celt/Kernels.cs.meta +11 -0
  192. package/ThirdParty/Concentus-Unity/Runtime/Celt/KissFFT.cs +456 -0
  193. package/ThirdParty/Concentus-Unity/Runtime/Celt/KissFFT.cs.meta +11 -0
  194. package/ThirdParty/Concentus-Unity/Runtime/Celt/Laplace.cs +157 -0
  195. package/ThirdParty/Concentus-Unity/Runtime/Celt/Laplace.cs.meta +11 -0
  196. package/ThirdParty/Concentus-Unity/Runtime/Celt/MDCT.cs +252 -0
  197. package/ThirdParty/Concentus-Unity/Runtime/Celt/MDCT.cs.meta +11 -0
  198. package/ThirdParty/Concentus-Unity/Runtime/Celt/Pitch.cs +467 -0
  199. package/ThirdParty/Concentus-Unity/Runtime/Celt/Pitch.cs.meta +11 -0
  200. package/ThirdParty/Concentus-Unity/Runtime/Celt/QuantizeBands.cs +546 -0
  201. package/ThirdParty/Concentus-Unity/Runtime/Celt/QuantizeBands.cs.meta +11 -0
  202. package/ThirdParty/Concentus-Unity/Runtime/Celt/Rate.cs +893 -0
  203. package/ThirdParty/Concentus-Unity/Runtime/Celt/Rate.cs.meta +11 -0
  204. package/ThirdParty/Concentus-Unity/Runtime/Celt/Structs/AnalysisInfo.cs +74 -0
  205. package/ThirdParty/Concentus-Unity/Runtime/Celt/Structs/AnalysisInfo.cs.meta +11 -0
  206. package/ThirdParty/Concentus-Unity/Runtime/Celt/Structs/CELTDecoder.cs +866 -0
  207. package/ThirdParty/Concentus-Unity/Runtime/Celt/Structs/CELTDecoder.cs.meta +11 -0
  208. package/ThirdParty/Concentus-Unity/Runtime/Celt/Structs/CELTMode.cs +118 -0
  209. package/ThirdParty/Concentus-Unity/Runtime/Celt/Structs/CELTMode.cs.meta +11 -0
  210. package/ThirdParty/Concentus-Unity/Runtime/Celt/Structs/CeltEncoder.cs +1303 -0
  211. package/ThirdParty/Concentus-Unity/Runtime/Celt/Structs/CeltEncoder.cs.meta +11 -0
  212. package/ThirdParty/Concentus-Unity/Runtime/Celt/Structs/FFTState.cs +54 -0
  213. package/ThirdParty/Concentus-Unity/Runtime/Celt/Structs/FFTState.cs.meta +11 -0
  214. package/ThirdParty/Concentus-Unity/Runtime/Celt/Structs/MDCTLookup.cs +59 -0
  215. package/ThirdParty/Concentus-Unity/Runtime/Celt/Structs/MDCTLookup.cs.meta +11 -0
  216. package/ThirdParty/Concentus-Unity/Runtime/Celt/Structs/PulseCache.cs +59 -0
  217. package/ThirdParty/Concentus-Unity/Runtime/Celt/Structs/PulseCache.cs.meta +11 -0
  218. package/ThirdParty/Concentus-Unity/Runtime/Celt/Structs.meta +8 -0
  219. package/ThirdParty/Concentus-Unity/Runtime/Celt/Tables.cs +1128 -0
  220. package/ThirdParty/Concentus-Unity/Runtime/Celt/Tables.cs.meta +11 -0
  221. package/ThirdParty/Concentus-Unity/Runtime/Celt/VQ.cs +406 -0
  222. package/ThirdParty/Concentus-Unity/Runtime/Celt/VQ.cs.meta +11 -0
  223. package/ThirdParty/Concentus-Unity/Runtime/Celt.meta +8 -0
  224. package/ThirdParty/Concentus-Unity/Runtime/Common/Autocorrelation.cs +282 -0
  225. package/ThirdParty/Concentus-Unity/Runtime/Common/Autocorrelation.cs.meta +11 -0
  226. package/ThirdParty/Concentus-Unity/Runtime/Common/CPlusPlus/Arrays.cs +250 -0
  227. package/ThirdParty/Concentus-Unity/Runtime/Common/CPlusPlus/Arrays.cs.meta +11 -0
  228. package/ThirdParty/Concentus-Unity/Runtime/Common/CPlusPlus/BoxedValue.cs +97 -0
  229. package/ThirdParty/Concentus-Unity/Runtime/Common/CPlusPlus/BoxedValue.cs.meta +11 -0
  230. package/ThirdParty/Concentus-Unity/Runtime/Common/CPlusPlus/Pointer.cs +563 -0
  231. package/ThirdParty/Concentus-Unity/Runtime/Common/CPlusPlus/Pointer.cs.meta +11 -0
  232. package/ThirdParty/Concentus-Unity/Runtime/Common/CPlusPlus.meta +8 -0
  233. package/ThirdParty/Concentus-Unity/Runtime/Common/EntropyCoder.cs +779 -0
  234. package/ThirdParty/Concentus-Unity/Runtime/Common/EntropyCoder.cs.meta +11 -0
  235. package/ThirdParty/Concentus-Unity/Runtime/Common/Inlines.cs +2709 -0
  236. package/ThirdParty/Concentus-Unity/Runtime/Common/Inlines.cs.meta +11 -0
  237. package/ThirdParty/Concentus-Unity/Runtime/Common/SpeexResampler.cs +1081 -0
  238. package/ThirdParty/Concentus-Unity/Runtime/Common/SpeexResampler.cs.meta +11 -0
  239. package/ThirdParty/Concentus-Unity/Runtime/Common.meta +8 -0
  240. package/ThirdParty/Concentus-Unity/Runtime/Concentus-Unity.Runtime.asmdef +3 -0
  241. package/ThirdParty/Concentus-Unity/Runtime/Concentus-Unity.Runtime.asmdef.meta +7 -0
  242. package/ThirdParty/Concentus-Unity/Runtime/IOpusDecoder.cs +138 -0
  243. package/ThirdParty/Concentus-Unity/Runtime/IOpusDecoder.cs.meta +11 -0
  244. package/ThirdParty/Concentus-Unity/Runtime/IOpusEncoder.cs +204 -0
  245. package/ThirdParty/Concentus-Unity/Runtime/IOpusEncoder.cs.meta +11 -0
  246. package/ThirdParty/Concentus-Unity/Runtime/IOpusMultiStreamDecoder.cs +123 -0
  247. package/ThirdParty/Concentus-Unity/Runtime/IOpusMultiStreamDecoder.cs.meta +11 -0
  248. package/ThirdParty/Concentus-Unity/Runtime/IOpusMultiStreamEncoder.cs +196 -0
  249. package/ThirdParty/Concentus-Unity/Runtime/IOpusMultiStreamEncoder.cs.meta +11 -0
  250. package/ThirdParty/Concentus-Unity/Runtime/IResampler.cs +164 -0
  251. package/ThirdParty/Concentus-Unity/Runtime/IResampler.cs.meta +11 -0
  252. package/ThirdParty/Concentus-Unity/Runtime/Opus/Analysis.cs +590 -0
  253. package/ThirdParty/Concentus-Unity/Runtime/Opus/Analysis.cs.meta +11 -0
  254. package/ThirdParty/Concentus-Unity/Runtime/Opus/CodecHelpers.cs +712 -0
  255. package/ThirdParty/Concentus-Unity/Runtime/Opus/CodecHelpers.cs.meta +11 -0
  256. package/ThirdParty/Concentus-Unity/Runtime/Opus/Downmix.cs +125 -0
  257. package/ThirdParty/Concentus-Unity/Runtime/Opus/Downmix.cs.meta +11 -0
  258. package/ThirdParty/Concentus-Unity/Runtime/Opus/Enums/OpusApplication.cs +57 -0
  259. package/ThirdParty/Concentus-Unity/Runtime/Opus/Enums/OpusApplication.cs.meta +11 -0
  260. package/ThirdParty/Concentus-Unity/Runtime/Opus/Enums/OpusBandwidth.cs +70 -0
  261. package/ThirdParty/Concentus-Unity/Runtime/Opus/Enums/OpusBandwidth.cs.meta +11 -0
  262. package/ThirdParty/Concentus-Unity/Runtime/Opus/Enums/OpusControl.cs +96 -0
  263. package/ThirdParty/Concentus-Unity/Runtime/Opus/Enums/OpusControl.cs.meta +11 -0
  264. package/ThirdParty/Concentus-Unity/Runtime/Opus/Enums/OpusError.cs +91 -0
  265. package/ThirdParty/Concentus-Unity/Runtime/Opus/Enums/OpusError.cs.meta +11 -0
  266. package/ThirdParty/Concentus-Unity/Runtime/Opus/Enums/OpusFramesize.cs +80 -0
  267. package/ThirdParty/Concentus-Unity/Runtime/Opus/Enums/OpusFramesize.cs.meta +11 -0
  268. package/ThirdParty/Concentus-Unity/Runtime/Opus/Enums/OpusMode.cs +45 -0
  269. package/ThirdParty/Concentus-Unity/Runtime/Opus/Enums/OpusMode.cs.meta +11 -0
  270. package/ThirdParty/Concentus-Unity/Runtime/Opus/Enums/OpusSignal.cs +52 -0
  271. package/ThirdParty/Concentus-Unity/Runtime/Opus/Enums/OpusSignal.cs.meta +11 -0
  272. package/ThirdParty/Concentus-Unity/Runtime/Opus/Enums.meta +8 -0
  273. package/ThirdParty/Concentus-Unity/Runtime/Opus/MultiLayerPerceptron.cs +111 -0
  274. package/ThirdParty/Concentus-Unity/Runtime/Opus/MultiLayerPerceptron.cs.meta +11 -0
  275. package/ThirdParty/Concentus-Unity/Runtime/Opus/OpusCompare.cs +340 -0
  276. package/ThirdParty/Concentus-Unity/Runtime/Opus/OpusCompare.cs.meta +11 -0
  277. package/ThirdParty/Concentus-Unity/Runtime/Opus/OpusConstants.cs +66 -0
  278. package/ThirdParty/Concentus-Unity/Runtime/Opus/OpusConstants.cs.meta +11 -0
  279. package/ThirdParty/Concentus-Unity/Runtime/Opus/OpusException.cs +92 -0
  280. package/ThirdParty/Concentus-Unity/Runtime/Opus/OpusException.cs.meta +11 -0
  281. package/ThirdParty/Concentus-Unity/Runtime/Opus/OpusMultistream.cs +99 -0
  282. package/ThirdParty/Concentus-Unity/Runtime/Opus/OpusMultistream.cs.meta +11 -0
  283. package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/ChannelLayout.cs +60 -0
  284. package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/ChannelLayout.cs.meta +11 -0
  285. package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/MLP.cs +52 -0
  286. package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/MLP.cs.meta +11 -0
  287. package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/OpusDecoder.cs +1002 -0
  288. package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/OpusDecoder.cs.meta +11 -0
  289. package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/OpusEncoder.cs +2091 -0
  290. package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/OpusEncoder.cs.meta +11 -0
  291. package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/OpusMSDecoder.cs +526 -0
  292. package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/OpusMSDecoder.cs.meta +11 -0
  293. package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/OpusMSEncoder.cs +1257 -0
  294. package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/OpusMSEncoder.cs.meta +11 -0
  295. package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/OpusPacketInfo.cs +598 -0
  296. package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/OpusPacketInfo.cs.meta +11 -0
  297. package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/OpusRepacketizer.cs +563 -0
  298. package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/OpusRepacketizer.cs.meta +11 -0
  299. package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/StereoWidthState.cs +61 -0
  300. package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/StereoWidthState.cs.meta +11 -0
  301. package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/TonalityAnalysisState.cs +140 -0
  302. package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/TonalityAnalysisState.cs.meta +11 -0
  303. package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/VorbisLayout.cs +69 -0
  304. package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/VorbisLayout.cs.meta +11 -0
  305. package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs.meta +8 -0
  306. package/ThirdParty/Concentus-Unity/Runtime/Opus/Tables.cs +298 -0
  307. package/ThirdParty/Concentus-Unity/Runtime/Opus/Tables.cs.meta +11 -0
  308. package/ThirdParty/Concentus-Unity/Runtime/Opus.meta +8 -0
  309. package/ThirdParty/Concentus-Unity/Runtime/OpusCodecFactory.cs +131 -0
  310. package/ThirdParty/Concentus-Unity/Runtime/OpusCodecFactory.cs.meta +11 -0
  311. package/ThirdParty/Concentus-Unity/Runtime/ResamplerFactory.cs +91 -0
  312. package/ThirdParty/Concentus-Unity/Runtime/ResamplerFactory.cs.meta +11 -0
  313. package/ThirdParty/Concentus-Unity/Runtime/Silk/ApplySineWindow.cs +118 -0
  314. package/ThirdParty/Concentus-Unity/Runtime/Silk/ApplySineWindow.cs.meta +11 -0
  315. package/ThirdParty/Concentus-Unity/Runtime/Silk/BWExpander.cs +90 -0
  316. package/ThirdParty/Concentus-Unity/Runtime/Silk/BWExpander.cs.meta +11 -0
  317. package/ThirdParty/Concentus-Unity/Runtime/Silk/BurgModified.cs +323 -0
  318. package/ThirdParty/Concentus-Unity/Runtime/Silk/BurgModified.cs.meta +11 -0
  319. package/ThirdParty/Concentus-Unity/Runtime/Silk/CNG.cs +232 -0
  320. package/ThirdParty/Concentus-Unity/Runtime/Silk/CNG.cs.meta +11 -0
  321. package/ThirdParty/Concentus-Unity/Runtime/Silk/CodeSigns.cs +153 -0
  322. package/ThirdParty/Concentus-Unity/Runtime/Silk/CodeSigns.cs.meta +11 -0
  323. package/ThirdParty/Concentus-Unity/Runtime/Silk/CorrelateMatrix.cs +186 -0
  324. package/ThirdParty/Concentus-Unity/Runtime/Silk/CorrelateMatrix.cs.meta +11 -0
  325. package/ThirdParty/Concentus-Unity/Runtime/Silk/DecodeAPI.cs +463 -0
  326. package/ThirdParty/Concentus-Unity/Runtime/Silk/DecodeAPI.cs.meta +11 -0
  327. package/ThirdParty/Concentus-Unity/Runtime/Silk/DecodeCore.cs +278 -0
  328. package/ThirdParty/Concentus-Unity/Runtime/Silk/DecodeCore.cs.meta +11 -0
  329. package/ThirdParty/Concentus-Unity/Runtime/Silk/DecodeIndices.cs +181 -0
  330. package/ThirdParty/Concentus-Unity/Runtime/Silk/DecodeIndices.cs.meta +11 -0
  331. package/ThirdParty/Concentus-Unity/Runtime/Silk/DecodeParameters.cs +141 -0
  332. package/ThirdParty/Concentus-Unity/Runtime/Silk/DecodeParameters.cs.meta +11 -0
  333. package/ThirdParty/Concentus-Unity/Runtime/Silk/DecodePitch.cs +90 -0
  334. package/ThirdParty/Concentus-Unity/Runtime/Silk/DecodePitch.cs.meta +11 -0
  335. package/ThirdParty/Concentus-Unity/Runtime/Silk/DecodePulses.cs +138 -0
  336. package/ThirdParty/Concentus-Unity/Runtime/Silk/DecodePulses.cs.meta +11 -0
  337. package/ThirdParty/Concentus-Unity/Runtime/Silk/EncodeAPI.cs +741 -0
  338. package/ThirdParty/Concentus-Unity/Runtime/Silk/EncodeAPI.cs.meta +11 -0
  339. package/ThirdParty/Concentus-Unity/Runtime/Silk/EncodeIndices.cs +225 -0
  340. package/ThirdParty/Concentus-Unity/Runtime/Silk/EncodeIndices.cs.meta +11 -0
  341. package/ThirdParty/Concentus-Unity/Runtime/Silk/EncodePulses.cs +280 -0
  342. package/ThirdParty/Concentus-Unity/Runtime/Silk/EncodePulses.cs.meta +11 -0
  343. package/ThirdParty/Concentus-Unity/Runtime/Silk/Enums/DecoderAPIFlag.cs +41 -0
  344. package/ThirdParty/Concentus-Unity/Runtime/Silk/Enums/DecoderAPIFlag.cs.meta +11 -0
  345. package/ThirdParty/Concentus-Unity/Runtime/Silk/Enums/SilkError.cs +91 -0
  346. package/ThirdParty/Concentus-Unity/Runtime/Silk/Enums/SilkError.cs.meta +11 -0
  347. package/ThirdParty/Concentus-Unity/Runtime/Silk/Enums.meta +8 -0
  348. package/ThirdParty/Concentus-Unity/Runtime/Silk/Filters.cs +625 -0
  349. package/ThirdParty/Concentus-Unity/Runtime/Silk/Filters.cs.meta +11 -0
  350. package/ThirdParty/Concentus-Unity/Runtime/Silk/FindLPC.cs +184 -0
  351. package/ThirdParty/Concentus-Unity/Runtime/Silk/FindLPC.cs.meta +11 -0
  352. package/ThirdParty/Concentus-Unity/Runtime/Silk/FindLTP.cs +296 -0
  353. package/ThirdParty/Concentus-Unity/Runtime/Silk/FindLTP.cs.meta +11 -0
  354. package/ThirdParty/Concentus-Unity/Runtime/Silk/FindPitchLags.cs +165 -0
  355. package/ThirdParty/Concentus-Unity/Runtime/Silk/FindPitchLags.cs.meta +11 -0
  356. package/ThirdParty/Concentus-Unity/Runtime/Silk/FindPredCoefs.cs +171 -0
  357. package/ThirdParty/Concentus-Unity/Runtime/Silk/FindPredCoefs.cs.meta +11 -0
  358. package/ThirdParty/Concentus-Unity/Runtime/Silk/GainQuantization.cs +187 -0
  359. package/ThirdParty/Concentus-Unity/Runtime/Silk/GainQuantization.cs.meta +11 -0
  360. package/ThirdParty/Concentus-Unity/Runtime/Silk/HPVariableCutoff.cs +90 -0
  361. package/ThirdParty/Concentus-Unity/Runtime/Silk/HPVariableCutoff.cs.meta +11 -0
  362. package/ThirdParty/Concentus-Unity/Runtime/Silk/K2A.cs +92 -0
  363. package/ThirdParty/Concentus-Unity/Runtime/Silk/K2A.cs.meta +11 -0
  364. package/ThirdParty/Concentus-Unity/Runtime/Silk/LPCInversePredGain.cs +169 -0
  365. package/ThirdParty/Concentus-Unity/Runtime/Silk/LPCInversePredGain.cs.meta +11 -0
  366. package/ThirdParty/Concentus-Unity/Runtime/Silk/LTPAnalysisFilter.cs +103 -0
  367. package/ThirdParty/Concentus-Unity/Runtime/Silk/LTPAnalysisFilter.cs.meta +11 -0
  368. package/ThirdParty/Concentus-Unity/Runtime/Silk/LTPScaleControl.cs +66 -0
  369. package/ThirdParty/Concentus-Unity/Runtime/Silk/LTPScaleControl.cs.meta +11 -0
  370. package/ThirdParty/Concentus-Unity/Runtime/Silk/LinearAlgebra.cs +245 -0
  371. package/ThirdParty/Concentus-Unity/Runtime/Silk/LinearAlgebra.cs.meta +11 -0
  372. package/ThirdParty/Concentus-Unity/Runtime/Silk/NLSF.cs +1270 -0
  373. package/ThirdParty/Concentus-Unity/Runtime/Silk/NLSF.cs.meta +11 -0
  374. package/ThirdParty/Concentus-Unity/Runtime/Silk/NoiseShapeAnalysis.cs +496 -0
  375. package/ThirdParty/Concentus-Unity/Runtime/Silk/NoiseShapeAnalysis.cs.meta +11 -0
  376. package/ThirdParty/Concentus-Unity/Runtime/Silk/PLC.cs +486 -0
  377. package/ThirdParty/Concentus-Unity/Runtime/Silk/PLC.cs.meta +11 -0
  378. package/ThirdParty/Concentus-Unity/Runtime/Silk/PitchAnalysisCore.cs +792 -0
  379. package/ThirdParty/Concentus-Unity/Runtime/Silk/PitchAnalysisCore.cs.meta +11 -0
  380. package/ThirdParty/Concentus-Unity/Runtime/Silk/ProcessGains.cs +143 -0
  381. package/ThirdParty/Concentus-Unity/Runtime/Silk/ProcessGains.cs.meta +11 -0
  382. package/ThirdParty/Concentus-Unity/Runtime/Silk/QuantizeLTPGains.cs +153 -0
  383. package/ThirdParty/Concentus-Unity/Runtime/Silk/QuantizeLTPGains.cs.meta +11 -0
  384. package/ThirdParty/Concentus-Unity/Runtime/Silk/RegularizeCorrelations.cs +61 -0
  385. package/ThirdParty/Concentus-Unity/Runtime/Silk/RegularizeCorrelations.cs.meta +11 -0
  386. package/ThirdParty/Concentus-Unity/Runtime/Silk/Resampler.cs +744 -0
  387. package/ThirdParty/Concentus-Unity/Runtime/Silk/Resampler.cs.meta +11 -0
  388. package/ThirdParty/Concentus-Unity/Runtime/Silk/ResidualEnergy.cs +193 -0
  389. package/ThirdParty/Concentus-Unity/Runtime/Silk/ResidualEnergy.cs.meta +11 -0
  390. package/ThirdParty/Concentus-Unity/Runtime/Silk/Schur.cs +198 -0
  391. package/ThirdParty/Concentus-Unity/Runtime/Silk/Schur.cs.meta +11 -0
  392. package/ThirdParty/Concentus-Unity/Runtime/Silk/ShellCoder.cs +210 -0
  393. package/ThirdParty/Concentus-Unity/Runtime/Silk/ShellCoder.cs.meta +11 -0
  394. package/ThirdParty/Concentus-Unity/Runtime/Silk/Sigmoid.cs +93 -0
  395. package/ThirdParty/Concentus-Unity/Runtime/Silk/Sigmoid.cs.meta +11 -0
  396. package/ThirdParty/Concentus-Unity/Runtime/Silk/SilkConstants.cs +311 -0
  397. package/ThirdParty/Concentus-Unity/Runtime/Silk/SilkConstants.cs.meta +11 -0
  398. package/ThirdParty/Concentus-Unity/Runtime/Silk/Sort.cs +184 -0
  399. package/ThirdParty/Concentus-Unity/Runtime/Silk/Sort.cs.meta +11 -0
  400. package/ThirdParty/Concentus-Unity/Runtime/Silk/Stereo.cs +545 -0
  401. package/ThirdParty/Concentus-Unity/Runtime/Silk/Stereo.cs.meta +11 -0
  402. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/CNGState.cs +59 -0
  403. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/CNGState.cs.meta +11 -0
  404. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/DecControlState.cs +72 -0
  405. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/DecControlState.cs.meta +11 -0
  406. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/EncControlState.cs +217 -0
  407. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/EncControlState.cs.meta +11 -0
  408. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/NLSFCodebook.cs +108 -0
  409. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/NLSFCodebook.cs.meta +11 -0
  410. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/PLCStruct.cs +75 -0
  411. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/PLCStruct.cs.meta +11 -0
  412. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SideInfoIndices.cs +88 -0
  413. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SideInfoIndices.cs.meta +11 -0
  414. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkChannelDecoder.cs +360 -0
  415. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkChannelDecoder.cs.meta +11 -0
  416. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkChannelEncoder.cs +1265 -0
  417. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkChannelEncoder.cs.meta +11 -0
  418. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkDecoder.cs +70 -0
  419. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkDecoder.cs.meta +11 -0
  420. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkDecoderControl.cs +63 -0
  421. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkDecoderControl.cs.meta +11 -0
  422. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkEncoder.cs +105 -0
  423. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkEncoder.cs.meta +11 -0
  424. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkEncoderControl.cs +105 -0
  425. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkEncoderControl.cs.meta +11 -0
  426. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkLPState.cs +108 -0
  427. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkLPState.cs.meta +11 -0
  428. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkNSQState.cs +1313 -0
  429. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkNSQState.cs.meta +11 -0
  430. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkPrefilterState.cs +70 -0
  431. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkPrefilterState.cs.meta +11 -0
  432. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkResamplerState.cs +94 -0
  433. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkResamplerState.cs.meta +11 -0
  434. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkShapeState.cs +57 -0
  435. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkShapeState.cs.meta +11 -0
  436. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkVADState.cs +108 -0
  437. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkVADState.cs.meta +11 -0
  438. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/StereoDecodeState.cs +52 -0
  439. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/StereoDecodeState.cs.meta +11 -0
  440. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/StereoEncodeState.cs +71 -0
  441. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/StereoEncodeState.cs.meta +11 -0
  442. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/TOCStruct.cs +66 -0
  443. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/TOCStruct.cs.meta +11 -0
  444. package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs.meta +8 -0
  445. package/ThirdParty/Concentus-Unity/Runtime/Silk/SumSqrShift.cs +180 -0
  446. package/ThirdParty/Concentus-Unity/Runtime/Silk/SumSqrShift.cs.meta +11 -0
  447. package/ThirdParty/Concentus-Unity/Runtime/Silk/Tables.cs +1065 -0
  448. package/ThirdParty/Concentus-Unity/Runtime/Silk/Tables.cs.meta +11 -0
  449. package/ThirdParty/Concentus-Unity/Runtime/Silk/TuningParameters.cs +174 -0
  450. package/ThirdParty/Concentus-Unity/Runtime/Silk/TuningParameters.cs.meta +11 -0
  451. package/ThirdParty/Concentus-Unity/Runtime/Silk/VQ_WMat_EC.cs +134 -0
  452. package/ThirdParty/Concentus-Unity/Runtime/Silk/VQ_WMat_EC.cs.meta +11 -0
  453. package/ThirdParty/Concentus-Unity/Runtime/Silk/VoiceActivityDetection.cs +410 -0
  454. package/ThirdParty/Concentus-Unity/Runtime/Silk/VoiceActivityDetection.cs.meta +11 -0
  455. package/ThirdParty/Concentus-Unity/Runtime/Silk.meta +8 -0
  456. package/ThirdParty/Concentus-Unity/Runtime.meta +8 -0
  457. package/ThirdParty/Concentus-Unity/package.json +13 -0
  458. package/ThirdParty/Concentus-Unity/package.json.meta +7 -0
  459. package/ThirdParty/Concentus-Unity.meta +8 -0
  460. package/ThirdParty/Mirror/Core/NetworkManager.cs +12 -1
  461. package/ThirdParty/UniMic/Editor/MicAudioSourceEditor.cs +32 -0
  462. package/ThirdParty/UniMic/README.md +69 -76
  463. package/ThirdParty/UniMic/Runtime/Mic.cs +321 -164
  464. package/ThirdParty/UniMic/Runtime/MicAudioSource.cs +30 -23
  465. package/ThirdParty/UniMic/Runtime/StreamedAudioSource.cs +373 -0
  466. package/ThirdParty/UniMic/Runtime/StreamedAudioSource.cs.meta +11 -0
  467. package/ThirdParty/UniMic/package.json +10 -3
  468. package/ThirdParty/UniMic.meta +3 -2
  469. package/package.json +6 -2
  470. package/Runtime/Code/VoiceChat/AirshipUniVoiceNetwork.cs +0 -469
  471. package/Runtime/Code/VoiceChat/AirshipUniVoiceNetwork.cs.meta +0 -3
  472. package/Runtime/Code/VoiceChat.meta +0 -3
  473. package/ThirdParty/UniMic/Editor/MicEditor.cs +0 -58
  474. package/ThirdParty/UniMic/Samples/UniMic Sample.unity +0 -377
  475. package/ThirdParty/UniMic/Samples/UniMic Sample.unity.meta +0 -7
  476. package/ThirdParty/UniMic/Samples/UniMic SampleSettings.lighting +0 -62
  477. package/ThirdParty/UniMic/Samples/UniMic SampleSettings.lighting.meta +0 -8
  478. package/ThirdParty/UniVoice/CHANGELOG.md +0 -67
  479. package/ThirdParty/UniVoice/CHANGELOG.md.meta +0 -7
  480. package/ThirdParty/UniVoice/README.md +0 -84
  481. package/ThirdParty/UniVoice/Runtime/Adrenak.UniVoice.Runtime.asmdef +0 -3
  482. package/ThirdParty/UniVoice/Runtime/ChatroomAgent.cs +0 -268
  483. package/ThirdParty/UniVoice/Runtime/ChatroomAgent.cs.meta +0 -11
  484. package/ThirdParty/UniVoice/Runtime/Interfaces/IAudioInput.cs +0 -36
  485. package/ThirdParty/UniVoice/Runtime/Interfaces/IAudioOutput.cs +0 -45
  486. package/ThirdParty/UniVoice/Runtime/Interfaces/IAudioOutputFactory.cs +0 -18
  487. package/ThirdParty/UniVoice/Runtime/Interfaces/IChatroomNetwork.cs +0 -126
  488. package/ThirdParty/UniVoice/Runtime/Interfaces/IChatroomNetwork.cs.meta +0 -11
  489. package/ThirdParty/UniVoice/Runtime/Types/ChatroomAgentMode.cs +0 -22
  490. package/ThirdParty/UniVoice/Runtime/Types/ChatroomAgentMode.cs.meta +0 -11
  491. package/ThirdParty/UniVoice/Runtime/Types/ChatroomPeerSettings.cs +0 -18
  492. package/ThirdParty/UniVoice/Runtime/Types/ChatroomPeerSettings.cs.meta +0 -11
  493. package/ThirdParty/UniVoice/package.json +0 -29
  494. package/ThirdParty/UniVoice.AudioSourceOutput/CHANGELOG.md +0 -0
  495. package/ThirdParty/UniVoice.AudioSourceOutput/CHANGELOG.md.meta +0 -7
  496. package/ThirdParty/UniVoice.AudioSourceOutput/LICENSE +0 -21
  497. package/ThirdParty/UniVoice.AudioSourceOutput/README.md +0 -0
  498. package/ThirdParty/UniVoice.AudioSourceOutput/Runtime/CircularAudioClip.cs +0 -101
  499. package/ThirdParty/UniVoice.AudioSourceOutput/Runtime/Extensions.cs +0 -38
  500. package/ThirdParty/UniVoice.AudioSourceOutput/Runtime/InbuiltAudioBuffer.cs +0 -8
  501. package/ThirdParty/UniVoice.AudioSourceOutput/Runtime/UniVoiceAudioSourceOutput.cs +0 -201
  502. package/ThirdParty/UniVoice.AudioSourceOutput/Runtime/UniVoiceAudioSourceOutput.cs.meta +0 -11
  503. package/ThirdParty/UniVoice.AudioSourceOutput/package.json +0 -34
  504. package/ThirdParty/UniVoice.UniMicInput/CHANGELOG.md +0 -0
  505. package/ThirdParty/UniVoice.UniMicInput/CHANGELOG.md.meta +0 -7
  506. package/ThirdParty/UniVoice.UniMicInput/LICENSE +0 -21
  507. package/ThirdParty/UniVoice.UniMicInput/README.md +0 -0
  508. package/ThirdParty/UniVoice.UniMicInput/Runtime/Adrenak.UniVoice.UniMicInput.asmdef +0 -16
  509. package/ThirdParty/UniVoice.UniMicInput/Runtime/UniVoiceUniMicInput.cs +0 -39
  510. package/ThirdParty/UniVoice.UniMicInput/Runtime/UniVoiceUniMicInput.cs.meta +0 -11
  511. package/ThirdParty/UniVoice.UniMicInput/package.json +0 -37
  512. package/ThirdParty/UniVoice.meta +0 -8
  513. /package/ThirdParty/{UniVoice → Adrenak.UniVoice}/LICENSE +0 -0
  514. /package/ThirdParty/{UniVoice → Adrenak.UniVoice}/LICENSE.meta +0 -0
  515. /package/ThirdParty/{UniVoice → Adrenak.UniVoice}/README.md.meta +0 -0
  516. /package/ThirdParty/{UniVoice → Adrenak.UniVoice}/Runtime/Adrenak.UniVoice.Runtime.asmdef.meta +0 -0
  517. /package/ThirdParty/{UniVoice → Adrenak.UniVoice}/Runtime/Interfaces/IAudioInput.cs.meta +0 -0
  518. /package/ThirdParty/{UniVoice → Adrenak.UniVoice}/Runtime/Interfaces/IAudioOutput.cs.meta +0 -0
  519. /package/ThirdParty/{UniVoice → Adrenak.UniVoice}/Runtime/Interfaces/IAudioOutputFactory.cs.meta +0 -0
  520. /package/ThirdParty/{UniVoice → Adrenak.UniVoice}/Runtime/Interfaces.meta +0 -0
  521. /package/ThirdParty/{UniVoice/Runtime/Types/ChatroomAudioSegment.cs.meta → Adrenak.UniVoice/Runtime/Types/AudioFrame.cs.meta} +0 -0
  522. /package/ThirdParty/{UniVoice → Adrenak.UniVoice}/Runtime/Types.meta +0 -0
  523. /package/ThirdParty/{UniVoice → Adrenak.UniVoice}/Runtime.meta +0 -0
  524. /package/ThirdParty/{UniVoice → Adrenak.UniVoice}/package.json.meta +0 -0
  525. /package/ThirdParty/UniMic/Editor/{MicEditor.cs.meta → MicAudioSourceEditor.cs.meta} +0 -0
@@ -13,6 +13,10 @@ on:
13
13
  default: platform-staging
14
14
  required: true
15
15
 
16
+ permissions:
17
+ id-token: write # Required for OIDC
18
+ contents: read
19
+
16
20
  jobs:
17
21
  publish-npm:
18
22
  environment: ${{ inputs.environment || 'platform-staging' }}
@@ -25,15 +29,13 @@ jobs:
25
29
  lfs: true
26
30
  - uses: actions/setup-node@v3
27
31
  with:
28
- node-version: 20
32
+ node-version: 24
29
33
  registry-url: 'https://registry.npmjs.org'
30
34
  - name: Determine Package Version
31
35
  id: pkg-version
32
36
  run: |
33
37
  echo "pkg-version=$(cat package.json | grep '"version":' | sed -E 's/.*"version": "([0-9]+\.[0-9]+\.)[0-9]+".*/\1/')${{github.run_number}}" >> "$GITHUB_OUTPUT"
34
38
  - name: Publish
35
- env:
36
- NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
37
39
  run: |
38
40
  npm --no-git-tag-version version "${{ steps.pkg-version.outputs.pkg-version }}"
39
41
  npm publish --tag ${{vars.NPM_TAG}}
@@ -163,8 +163,8 @@ namespace Editor.AirAsset {
163
163
  var assetGuids = AssetDatabase.FindAssets("*", new string[] {sourceFolderPath}).ToList();
164
164
  var assetPaths = assetGuids
165
165
  .Select((guid) => AssetDatabase.GUIDToAssetPath(guid))
166
- .Where((path) => !path.ToLower().Contains("editor/"))
167
- .Where((path) => !path.ToLower().Contains("exclude/"))
166
+ .Where((path) => !path.ToLowerInvariant().Contains("editor/"))
167
+ .Where((path) => !path.ToLowerInvariant().Contains("exclude/"))
168
168
  .Where((p) => !AssetDatabase.IsValidFolder(p))
169
169
  .ToArray();
170
170
  Debug.Log("Resources:");
@@ -172,9 +172,9 @@ namespace Editor.AirAsset {
172
172
  Debug.Log(" - " + path);
173
173
  }
174
174
  var addressableNames = assetPaths
175
- .Select((p) => p.ToLower())
175
+ .Select((p) => p.ToLowerInvariant())
176
176
  .Select((p) => {
177
- if (p.Contains(target.name.ToLower() + ".asset")) {
177
+ if (p.Contains(target.name.ToLowerInvariant() + ".asset")) {
178
178
  // custom name so it's easier to find when loading
179
179
  return "_AirAssetBundle";
180
180
  }
@@ -40,7 +40,7 @@ public class AirshipBuildInfoEditor : UnityEditor.Editor {
40
40
  GUI.enabled = false;
41
41
  EditorGUILayout.EnumPopup("Declaration Type", type.DeclarationType);
42
42
  EditorGUILayout.LabelField("Asset Path", type.AssetPath);
43
- EditorGUILayout.LabelField("Runtime Path", type.RuntimePath.ToLower());
43
+ EditorGUILayout.LabelField("Runtime Path", type.RuntimePath.ToLowerInvariant());
44
44
  EditorGUILayout.ObjectField("Script", type.Script, typeof(AirshipScript));
45
45
 
46
46
  if (airshipBehaviourMeta.extends.Count > 0) {
@@ -84,7 +84,7 @@ public class AirshipBuildInfoEditor : UnityEditor.Editor {
84
84
  foreach (var info in buildInfo.data.airshipBehaviourMetas) {
85
85
  if (searchText != "" && !info.className.StartsWith(searchText, StringComparison.OrdinalIgnoreCase)) continue;
86
86
 
87
- if (info.assetPath.StartsWith("Assets/AirshipPackages/@Easy/Core")) {
87
+ if (info.assetPath.StartsWith("Assets/AirshipPackages/@Easy/Core", StringComparison.Ordinal)) {
88
88
  packageMetas.Add(info);
89
89
  } else {
90
90
  gameMetas.Add(info);
@@ -94,7 +94,7 @@ public class AirshipBuildInfoEditor : UnityEditor.Editor {
94
94
  foreach (var info in buildInfo.data.airshipScriptableObjectMetas) {
95
95
  if (searchText != "" && !info.className.StartsWith(searchText, StringComparison.OrdinalIgnoreCase)) continue;
96
96
 
97
- if (info.assetPath.StartsWith("Assets/AirshipPackages/@Easy/Core")) {
97
+ if (info.assetPath.StartsWith("Assets/AirshipPackages/@Easy/Core", StringComparison.Ordinal)) {
98
98
  packageMetas.Add(info);
99
99
  } else {
100
100
  gameMetas.Add(info);
@@ -126,7 +126,7 @@ public class AirshipBuildInfoEditor : UnityEditor.Editor {
126
126
  if (selectedItem.StartsWith("@")) {
127
127
  if (packageMetas.Count > 0) {
128
128
  foreach (var info in packageMetas) {
129
- if (info.assetPath.StartsWith("Assets/AirshipPackages/" + selectedItem)) OnBehaviourMeta(info);
129
+ if (info.assetPath.StartsWith("Assets/AirshipPackages/" + selectedItem, StringComparison.Ordinal)) OnBehaviourMeta(info);
130
130
  }
131
131
  }
132
132
  } else {
@@ -186,7 +186,7 @@ public class AirshipComponentDropdown : AdvancedDropdown {
186
186
  rootNode.AddScriptPath(binaryFile, pathComponents[..^1], path);
187
187
  }
188
188
  else {
189
- var isPackage = binaryFile.m_path.StartsWith("Assets/AirshipPackages/@");
189
+ var isPackage = binaryFile.m_path.StartsWith("Assets/AirshipPackages/@", StringComparison.Ordinal);
190
190
  if (isPackage) {
191
191
  var packagePath = string.Join(" ", binaryFile.m_path["Assets/AirshipPackages/@".Length..].Split("/")[0..2]);
192
192
 
@@ -215,6 +215,11 @@ public static class AirshipCustomEditors {
215
215
  if (airshipTypeToCustomEditor.TryGetValue(pathType, out var editorType)) {
216
216
  return editorType.EditorType;
217
217
  }
218
+
219
+ foreach (var baseType in pathType.BaseTypes) {
220
+ if (!airshipTypeToCustomEditor.TryGetValue(baseType, out editorType)) continue;
221
+ if (editorType.EditorAttribute.EditorForChildClasses) return editorType.EditorType;
222
+ }
218
223
 
219
224
  return airshipDeclarationType switch {
220
225
  AirshipDeclarationType.Unknown => null,
@@ -285,33 +290,15 @@ public static class AirshipCustomEditors {
285
290
  var editor = AirshipCustomEditors.GetEditorForScriptableObject(scriptableObject, editorType, serializedObject);
286
291
  return editor;
287
292
  }
288
-
289
- internal static AirshipEditor GetComponentEditorForType(AirshipType airshipType, AirshipComponent component, AirshipSerializedObject serializedObject) {
293
+
294
+ internal static AirshipEditor GetComponentEditorForType(AirshipType airshipType, AirshipComponent component,
295
+ AirshipSerializedObject serializedObject) {
290
296
  if (airshipType.DeclarationType != AirshipDeclarationType.AirshipBehaviour) return null;
291
297
  var editorType = AirshipCustomEditors.GetEditorTypeForTypeName(airshipType.Name);
292
298
  var editor = AirshipCustomEditors.GetEditorForComponent(component, editorType, serializedObject);
293
299
  return editor;
294
300
  }
295
301
 
296
- /// <summary>
297
- /// Get an AirshipEditor for the given serialized property - can be used to embed inline
298
- /// </summary>
299
- /// <param name="value"></param>
300
- /// <returns></returns>
301
- internal static AirshipEditor GetEditor(AirshipSerializedProperty value) {
302
- if (!value.isAirshipType) return null;
303
-
304
- var component = value.objectReferenceValue;
305
- if (component == null) return null;
306
-
307
- if (component is AirshipComponent airshipComponent) {
308
- return GetEditor(airshipComponent);
309
- };
310
-
311
- // TODO: In future we'll support Serializable objects & ScriptableObjects through here too.
312
- return null;
313
- }
314
-
315
302
  /// <summary>
316
303
  /// Gets the editor's property decorator for the given luau property decorator
317
304
  /// </summary>
@@ -331,6 +318,24 @@ public static class AirshipCustomEditors {
331
318
  propertyDecorator = default;
332
319
  return false;
333
320
  }
321
+
322
+ /// <summary>
323
+ /// Get an AirshipEditor for the given serialized property - will only work with AirshipBehaviour and AirshipScriptableObject properties
324
+ /// </summary>
325
+ /// <param name="value"></param>
326
+ /// <returns></returns>
327
+ public static AirshipEditor GetEditor(AirshipSerializedProperty value) {
328
+ if (!value.isAirshipType) return null;
329
+
330
+ var objectReferenceValue = value.objectReferenceValue;
331
+ if (objectReferenceValue == null) return null;
332
+
333
+ return objectReferenceValue switch {
334
+ AirshipComponent airshipComponent => GetEditor(airshipComponent),
335
+ AirshipScriptableObject scriptableObject => GetEditor(scriptableObject),
336
+ _ => null
337
+ };
338
+ }
334
339
 
335
340
  /// <summary>
336
341
  /// Get the editor for the given AirshipComponent
@@ -125,24 +125,7 @@ public abstract class AirshipEditor : ScriptableObject {
125
125
  protected void DrawDefaultProperties() {
126
126
  // Draw each property
127
127
  foreach (var property in serializedObject.GetProperties()) {
128
- var shouldHideProperty = false;
129
- foreach (var decorator in property.decorators) {
130
- if (AirshipCustomEditors.TryGetDecorator(decorator, out var propertyDecorator)) {
131
- propertyDecorator.arguments = decorator.parameters.ToArray();
132
- propertyDecorator.property = property;
133
- propertyDecorator.serializedObject = serializedObject;
134
-
135
- if (!propertyDecorator.ShouldDrawProperty()) {
136
- shouldHideProperty = true;
137
- break;
138
- }
139
-
140
- propertyDecorator.OnBeforeInspectorGUI();
141
- }
142
- }
143
-
144
- if (shouldHideProperty) continue;
145
-
128
+ if (!AirshipEditorGUI.DrawDecorators(property)) continue;
146
129
  AirshipEditorGUI.PropertyField(property);
147
130
 
148
131
  #if AIRSHIP_DEBUG
@@ -9,16 +9,28 @@ using NUnit.Framework.Internal;
9
9
  public class CustomAirshipEditorAttribute : Attribute {
10
10
  public string TypeName { get; }
11
11
  public string AssetPath { get; set; }
12
+ public bool EditorForChildClasses { get; set; }
12
13
  public int Priority { get; set; } = 0;
13
14
 
14
15
  public CustomAirshipEditorAttribute(string className) {
15
16
  TypeName = className;
16
17
  }
18
+
19
+ public CustomAirshipEditorAttribute(string className, bool editorForChildClasses) {
20
+ TypeName = className;
21
+ EditorForChildClasses = editorForChildClasses;
22
+ }
17
23
 
18
24
  public CustomAirshipEditorAttribute(string className, string assetPath) {
19
25
  TypeName = className;
20
26
  AssetPath = assetPath;
21
27
  }
28
+
29
+ public CustomAirshipEditorAttribute(string className, string assetPath, bool editorForChildClasses) {
30
+ TypeName = className;
31
+ AssetPath = assetPath;
32
+ EditorForChildClasses = editorForChildClasses;
33
+ }
22
34
  }
23
35
 
24
36
  [AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
@@ -28,6 +28,14 @@ public static class AirshipEditorExtensions {
28
28
  return AirshipBuildInfo.Instance.GetTypeByName(component.script.m_metadata.name);
29
29
  }
30
30
 
31
+ public static bool IsA(this AirshipComponent component, AirshipType airshipType) {
32
+ return component != null && component.GetAirshipType().IsAssignableFrom(airshipType);
33
+ }
34
+
35
+ public static bool IsA(this AirshipScriptableObject scriptableObject, AirshipType airshipType) {
36
+ return scriptableObject != null && scriptableObject.GetAirshipType().IsAssignableFrom(airshipType);
37
+ }
38
+
31
39
  #if AIRSHIPEX_CLASS_OBJECT
32
40
  public static AirshipType GetAirshipType(this AirshipSerializableClassObject luauObject) {
33
41
  if (luauObject.metadata == null) return null;
@@ -5,6 +5,7 @@ using JetBrains.Annotations;
5
5
  using Luau;
6
6
  using UnityEditor;
7
7
  using UnityEngine;
8
+ using Object = UnityEngine.Object;
8
9
 
9
10
  public enum AirshipSerializedType {
10
11
  Unknown,
@@ -316,4 +317,49 @@ public abstract class AirshipSerializedValue {
316
317
 
317
318
  return false;
318
319
  }
320
+
321
+ public bool TryGetAsScriptableObject(out AirshipScriptableObject scriptableObject) {
322
+ if (objectReferenceValue is AirshipScriptableObject scriptableObjectRef) {
323
+ scriptableObject = scriptableObjectRef;
324
+ return true;
325
+ }
326
+
327
+ scriptableObject = default;
328
+ return false;
329
+ }
330
+
331
+ public bool TryGetAsComponent(out AirshipComponent component) {
332
+ if (objectReferenceValue is AirshipComponent componentRef) {
333
+ component = componentRef;
334
+ return true;
335
+ }
336
+
337
+ component = default;
338
+ return false;
339
+ }
340
+
341
+ public bool TryGetAsObject<T>(out T obj) where T : Object {
342
+ if (objectReferenceValue is T objRef) {
343
+ obj = objRef;
344
+ return true;
345
+ }
346
+
347
+ obj = default;
348
+ return false;
349
+ }
350
+
351
+ public bool IsA(AirshipType targetAirshipType) {
352
+ if (!isAirshipType) return false;
353
+ return this.airshipType.IsAssignableFrom(targetAirshipType);
354
+ }
355
+
356
+ public bool IsA(Type targetType) {
357
+ if (!isObject) return false;
358
+ return objectType.IsAssignableFrom(targetType);
359
+ }
360
+
361
+ public bool IsA<T>() where T : Object {
362
+ if (!isObject) return false;
363
+ return objectType.IsAssignableFrom(typeof(T));
364
+ }
319
365
  }
@@ -108,7 +108,14 @@ namespace Editor {
108
108
  [MenuItem("Airship/Create Binary/Client/Mac (Staging)", priority = 80)]
109
109
  #endif
110
110
  public static void BuildMacClientStaging() {
111
- PlayerSettings.SetScriptingDefineSymbols(NamedBuildTarget.Standalone, new string[] {"AIRSHIP_STAGING", "AIRSHIP_PLAYER", "AIRSHIP_INTERNAL"});
111
+ PlayerSettings.GetScriptingDefineSymbols(NamedBuildTarget.Standalone, out var currDefines);
112
+
113
+ var allDefines = new HashSet<string>(currDefines);
114
+ allDefines.Add("AIRSHIP_STAGING");
115
+ allDefines.Add("AIRSHIP_PLAYER");
116
+ allDefines.Add("AIRSHIP_INTERNAL");
117
+
118
+ PlayerSettings.SetScriptingDefineSymbols(NamedBuildTarget.Standalone, allDefines.ToArray());
112
119
  BuildMacClient();
113
120
  }
114
121
 
@@ -213,6 +220,7 @@ namespace Editor {
213
220
 
214
221
  public static void BuildIOSClient(bool development, bool staging) {
215
222
  #if AIRSHIP_PLAYER
223
+ StreamingAssets.SetCoreMaterialPlatform(AirshipPlatform.iOS);
216
224
  OnBuild();
217
225
  CreateAssetBundles.ResetScenes();
218
226
 
@@ -259,6 +267,7 @@ namespace Editor {
259
267
  }
260
268
 
261
269
  CreateAssetBundles.AddAllGameBundleScenes();
270
+ StreamingAssets.ResetCoreMaterials();
262
271
  #endif
263
272
  }
264
273
 
@@ -427,7 +436,15 @@ namespace Editor {
427
436
  #endif
428
437
 
429
438
  public static void BuildWindowsClientStaging() {
430
- PlayerSettings.SetScriptingDefineSymbols(NamedBuildTarget.Standalone, new string[] {"AIRSHIP_STAGING", "AIRSHIP_PLAYER", "AIRSHIP_INTERNAL"});
439
+ PlayerSettings.GetScriptingDefineSymbols(NamedBuildTarget.Standalone, out var currDefines);
440
+
441
+ var allDefines = new HashSet<string>(currDefines);
442
+ allDefines.Add("AIRSHIP_STAGING");
443
+ allDefines.Add("AIRSHIP_PLAYER");
444
+ allDefines.Add("AIRSHIP_INTERNAL");
445
+
446
+ PlayerSettings.SetScriptingDefineSymbols(NamedBuildTarget.Standalone, allDefines.ToArray());
447
+
431
448
  BuildWindowsClient();
432
449
  }
433
450
 
@@ -1,3 +1,4 @@
1
+ using System;
1
2
  using UnityEngine;
2
3
  using UnityEditor;
3
4
 
@@ -29,14 +30,14 @@ namespace EasyEditorUtilities
29
30
  //manipulate the path
30
31
  string rootPath = "Assets/AirshipPackages/";
31
32
 
32
- if (path.StartsWith(rootPath))
33
+ if (path.StartsWith(rootPath, StringComparison.OrdinalIgnoreCase))
33
34
  {
34
35
  path = path.Substring(rootPath.Length);
35
36
  }
36
37
 
37
38
  string playerPath = "Assets/"; //For player etc
38
39
 
39
- if (path.StartsWith(playerPath))
40
+ if (path.StartsWith(playerPath, StringComparison.OrdinalIgnoreCase))
40
41
  {
41
42
  path = path.Substring(playerPath.Length);
42
43
  }
@@ -187,7 +187,7 @@ public static class CreateAssetBundles {
187
187
  var orgName = Path.GetFileName(orgDir);
188
188
  foreach (var packageDir in packageDirs) {
189
189
  var packageName = Path.GetFileName(packageDir);
190
- var assetBundleName = $"{orgName}/{packageName}_shared/resources".ToLower();
190
+ var assetBundleName = $"{orgName}/{packageName}_shared/resources".ToLowerInvariant();
191
191
  Debug.Log("asset bundle name: " + assetBundleName);
192
192
  var assetGuids = AssetDatabase.FindAssets("*", new string[] { packageDir }).ToList();
193
193
 
@@ -220,7 +220,7 @@ public static class CreateAssetBundles {
220
220
  .Where((p) => !p.EndsWith(".d.ts"))
221
221
  .Where((p) => !p.Contains("Packages/com.unity.render-pipelines.universal/Editor"))
222
222
  .ToArray();
223
- var addressableNames = assetPaths.Select((p) => p.ToLower())
223
+ var addressableNames = assetPaths.Select((p) => p.ToLowerInvariant())
224
224
  .ToArray();
225
225
 
226
226
  var build = new AssetBundleBuild() {
@@ -317,7 +317,7 @@ public static class CreateAssetBundles {
317
317
  // }
318
318
 
319
319
  foreach (var assetBundleFile in AirshipPackagesWindow.assetBundleFiles) {
320
- var assetBundleName = assetBundleFile.ToLower();
320
+ var assetBundleName = assetBundleFile.ToLowerInvariant();
321
321
  if (assetBundleName == "shared/scenes") {
322
322
  var assetGuids = gameConfig.gameScenes
323
323
  .Select((s) => AssetDatabase.GetAssetPath((SceneAsset)s)).ToHashSet();
@@ -337,7 +337,7 @@ public static class CreateAssetBundles {
337
337
  Debug.Log(" - " + p);
338
338
  }
339
339
 
340
- var addressableNames = assetPaths.Select((p) => p.ToLower())
340
+ var addressableNames = assetPaths.Select((p) => p.ToLowerInvariant())
341
341
  .ToArray();
342
342
  var build = new AssetBundleBuild() {
343
343
  assetBundleName = assetBundleName,
@@ -367,7 +367,7 @@ public static class CreateAssetBundles {
367
367
  var assetPaths = assetGuids
368
368
  .Select((guid) => AssetDatabase.GUIDToAssetPath(guid))
369
369
  .Where((p) => !(p.EndsWith(".lua") || p.EndsWith(".json~") || p.EndsWith(".d.ts")))
370
- .Where((path) => !path.ToLower().Contains("editor/"))
370
+ .Where((path) => !path.ToLowerInvariant().Contains("editor/"))
371
371
  .Where((p) => !AssetDatabase.IsValidFolder(p))
372
372
  .ToArray();
373
373
  // Debug.Log("Resources:");
@@ -375,7 +375,7 @@ public static class CreateAssetBundles {
375
375
  // Debug.Log(" - " + path);
376
376
  // }
377
377
  var addressableNames = assetPaths
378
- .Select((p) => p.ToLower())
378
+ .Select((p) => p.ToLowerInvariant())
379
379
  .ToArray();
380
380
  builds.Add(new AssetBundleBuild() {
381
381
  assetBundleName = assetBundleName,
@@ -50,7 +50,7 @@ internal class AssetData {
50
50
 
51
51
  public bool IsInternalAsset() {
52
52
  return Path.StartsWith("Packages", StringComparison.OrdinalIgnoreCase)
53
- || (Path.StartsWith("Assets/AirshipPackages/@Easy/Core") && !IsLocalPackageAsset())
53
+ || (Path.StartsWith("Assets/AirshipPackages/@Easy/Core", StringComparison.OrdinalIgnoreCase) && !IsLocalPackageAsset())
54
54
  || Path.Contains("gg.easy.airship");
55
55
  }
56
56
 
@@ -114,7 +114,7 @@ namespace Editor.Packages {
114
114
  yield break;
115
115
  }
116
116
  if (version.package.codeVersionNumber.ToString() != package.codeVersion) {
117
- if (!immediatelyUpdateCore && (package.id.ToLower() == "@easy/core" || package.id.ToLower() == "@easy/corematerials")) {
117
+ if (!immediatelyUpdateCore && (package.id.ToLowerInvariant() == "@easy/core" || package.id.ToLowerInvariant() == "@easy/corematerials")) {
118
118
  isCoreUpdateAvailable = true;
119
119
  } else {
120
120
  yield return AirshipPackagesWindow.DownloadPackage(package.id, targetCodeVersion, targetAssetVersion, targetPublishVersion);
@@ -131,7 +131,7 @@ namespace Editor.Packages {
131
131
  foreach (var package in this.gameConfig.packages) {
132
132
  packageVersionToggleBools.TryAdd(package.id, false);
133
133
 
134
- bool isCoreMaterials = package.id.ToLower() == "@easy/corematerials";
134
+ bool isCoreMaterials = package.id.ToLowerInvariant() == "@easy/corematerials";
135
135
 
136
136
  GUILayout.BeginHorizontal();
137
137
  GUILayout.Label(package.id.Split("/")[1], new GUIStyle(GUI.skin.label) { fixedWidth = 150, fontStyle = FontStyle.Bold});
@@ -169,7 +169,7 @@ namespace Editor.Packages {
169
169
  });
170
170
 
171
171
  // Remove button is disabled for core packages
172
- if (package.id.ToLower().StartsWith("@easy/core")) {
172
+ if (package.id.ToLowerInvariant().StartsWith("@easy/core")) {
173
173
  menu.AddDisabledItem(new GUIContent("Remove"));
174
174
  } else {
175
175
  menu.AddItem(new GUIContent("Remove"), false, () => { RemovePackage(package.id); });
@@ -352,7 +352,7 @@ namespace Editor.Packages {
352
352
  using var req = UnityWebRequest.Post(
353
353
  $"{deployUrl}/package-versions/create-deployment", JsonUtility.ToJson(
354
354
  new CreatePackageDeploymentDto() {
355
- packageSlug = packageDoc.id.ToLower(),
355
+ packageSlug = packageDoc.id.ToLowerInvariant(),
356
356
  deployCode = true,
357
357
  deployAssets = includeAssets
358
358
  }), "application/json");
@@ -269,8 +269,8 @@ public class Deploy {
269
269
  var binaryFileGuids = AssetDatabase.FindAssets("t:" + nameof(AirshipScript));
270
270
  var paths = new List<string>();
271
271
  foreach (var guid in binaryFileGuids) {
272
- var path = AssetDatabase.GUIDToAssetPath(guid).ToLower();
273
- if (path.StartsWith("assets/airshippackages")) {
272
+ var path = AssetDatabase.GUIDToAssetPath(guid).ToLowerInvariant();
273
+ if (path.StartsWith("assets/airshippackages", StringComparison.OrdinalIgnoreCase)) {
274
274
  continue;
275
275
  }
276
276
  paths.Add(path);
@@ -39,7 +39,7 @@ namespace Editor {
39
39
  }
40
40
 
41
41
  foreach (var sceneInfo in EditorBuildSettings.scenes) {
42
- if (!sceneInfo.path.ToLower().StartsWith("assets")) {
42
+ if (!sceneInfo.path.StartsWith("assets", StringComparison.OrdinalIgnoreCase)) {
43
43
  continue;
44
44
  }
45
45
  EditorSceneManager.OpenScene(sceneInfo.path);
@@ -30,10 +30,8 @@ internal class StreamingAssets {
30
30
  private static void FixStreamingAssetsPath(string sourcePath) {
31
31
  var resourcePath = PosixPath.Join(sourcePath, RelativeResourcesPath);
32
32
  var excludedResourcePath = resourcePath.Replace("StreamingAssets", "StreamingAssets~");
33
- if (!File.Exists(excludedResourcePath)) {
34
- Debug.LogWarning($"Could not find {excludedResourcePath}");
35
- return;
36
- }
33
+ if (!File.Exists(excludedResourcePath)) return;
34
+
37
35
  File.Move(excludedResourcePath, resourcePath);
38
36
  AssetDatabase.ImportAsset(resourcePath);
39
37
  }
@@ -41,6 +39,7 @@ internal class StreamingAssets {
41
39
  public static void SetCoreMaterialPlatform(AirshipPlatform platform) {
42
40
  var platformPath = platform switch {
43
41
  AirshipPlatform.Android => CoreMaterialsAndroid,
42
+ AirshipPlatform.iOS => CoreMaterialsIOS,
44
43
  _ => throw new ArgumentOutOfRangeException(nameof(platform), platform, null)
45
44
  };
46
45
 
@@ -332,11 +332,14 @@ using Object = UnityEngine.Object;
332
332
  private static void OnPostInitialCompilation(TypescriptCompilationResult result) {
333
333
  if (!result.InitialCompilation) return;
334
334
 
335
-
336
- AirshipCustomEditors.RegisterEditorsForRegisteredTypes();
337
- AirshipCustomMenus.instance.RegisterMenus();
338
- AirshipCustomMenus.instance.Save();
339
-
335
+ try {
336
+ AirshipCustomEditors.RegisterEditorsForRegisteredTypes();
337
+ AirshipCustomMenus.instance.RegisterMenus();
338
+ AirshipCustomMenus.instance.Save();
339
+ } catch (Exception ex) {
340
+ Debug.LogError($"Failed to register Airship custom editors: {ex}");
341
+ }
342
+
340
343
  TypescriptServices.FinishedCompilation -= OnPostInitialCompilation;
341
344
  }
342
345
 
@@ -545,7 +545,30 @@ public static partial class AirshipEditorGUI {
545
545
  return enabled;
546
546
  }
547
547
 
548
+ /// <summary>
549
+ /// Draws the decorators (if applicable) and will return true if the property should render
550
+ /// </summary>
551
+ /// <param name="property">The property to draw the decorators for</param>
552
+ /// <returns></returns>
553
+ public static bool DrawDecorators(AirshipSerializedProperty property) {
554
+ var shouldHideProperty = false;
555
+ foreach (var decorator in property.decorators) {
556
+ if (AirshipCustomEditors.TryGetDecorator(decorator, out var propertyDecorator)) {
557
+ propertyDecorator.arguments = decorator.parameters.ToArray();
558
+ propertyDecorator.property = property;
559
+ propertyDecorator.serializedObject = property.serializedObject;
560
+
561
+ if (!propertyDecorator.ShouldDrawProperty()) {
562
+ shouldHideProperty = true;
563
+ break;
564
+ }
565
+
566
+ propertyDecorator.OnBeforeInspectorGUI();
567
+ }
568
+ }
548
569
 
570
+ return !shouldHideProperty;
571
+ }
549
572
 
550
573
  /// <summary>
551
574
  /// Draws the given airship property value
@@ -25,7 +25,7 @@ namespace Code.AirAssetBundle {
25
25
  }
26
26
 
27
27
  public async Task<Object> LoadAsync(string assetPath) {
28
- var res = this.assetBundle.LoadAssetAsync(assetPath.ToLower());
28
+ var res = this.assetBundle.LoadAssetAsync(assetPath.ToLowerInvariant());
29
29
  await res;
30
30
  return res.asset;
31
31
  }
@@ -6,18 +6,19 @@ using UnityEngine.Scripting;
6
6
  namespace Code {
7
7
  [LuauAPI][Preserve]
8
8
  public static class AirshipConst {
9
- public const int playerVersion = 23;
9
+ public const int playerVersion = 24;
10
10
  public static readonly IReadOnlyList<string> playerFlags = new string[] {
11
11
  "SkipLoading",
12
12
  "LagCompCheckIdIsInt",
13
13
  "PlatformGearDownloadClassId",
14
14
  "HasTransformMoveDirection", // True for versions that have access to CharacterMovement.TransformMoveDirection
15
+ "CompressVOIPAudio",
15
16
  };
16
17
 
17
18
 
18
19
  /// <summary>
19
20
  /// The server will kick clients that have a playerVersion lower than this value.
20
21
  /// </summary>
21
- public const int minAcceptedPlayerVersionOnServer = 23;
22
+ public const int minAcceptedPlayerVersionOnServer = 24;
22
23
  }
23
24
  }
@@ -132,7 +132,7 @@ public class SocketManager : Singleton<SocketManager> {
132
132
  };
133
133
 
134
134
  Instance.socket.OnError += async (sender, s) => {
135
- if (s.StartsWith("User does not have \"GC Edge\" access")) {
135
+ if (s.StartsWith("User does not have \"GC Edge\" access", StringComparison.OrdinalIgnoreCase)) {
136
136
  Debug.Log("User does not have \"GC Edge\" access");
137
137
  await Awaitable.MainThreadAsync();
138
138
  CrossSceneState.kickForceLogout = true;
@@ -319,7 +319,7 @@ public class ServerBootstrap : MonoBehaviour
319
319
  }
320
320
  this.airshipJWT = annotations["JWT"];
321
321
  UnityWebRequestProxyHelper.ProxyAuthCredentials = this.airshipJWT;
322
- InternalHttpManager.authTokenSetTaskCompletionSource.SetResult(true);
322
+ InternalHttpManager.SetAuthToken(this.airshipJWT);
323
323
  // Debug.Log("Airship JWT:");
324
324
  // Debug.Log(airshipJWT);
325
325
 
@@ -395,7 +395,7 @@ public class ServerBootstrap : MonoBehaviour
395
395
  foreach (var package in gameConfig.packages) {
396
396
  // Ignore packages already in the startup config. Anything already in startup config is a "required package" at this point.
397
397
  // The below code is finding an existing package in startup config.
398
- if (this.startupConfig.packages.Find((p) => p.id.ToLower() == package.id.ToLower()) != null) {
398
+ if (this.startupConfig.packages.Find((p) => p.id.ToLowerInvariant() == package.id.ToLowerInvariant()) != null) {
399
399
  continue;
400
400
  }
401
401