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.
- package/.github/workflows/package-deployment.yaml +5 -3
- package/Editor/AirAsset/AirAssetBundleEditor.cs +4 -4
- package/Editor/AirshipBuildInfoEditor.cs +4 -4
- package/Editor/AirshipComponentDropdown.cs +1 -1
- package/Editor/AirshipEditors/AirshipCustomEditors.cs +26 -21
- package/Editor/AirshipEditors/AirshipEditor.cs +1 -18
- package/Editor/AirshipEditors/CustomAirshipEditorAttribute.cs +12 -0
- package/Editor/AirshipEditors/Properties/AirshipEditorExtensions.cs +8 -0
- package/Editor/AirshipEditors/Properties/AirshipSerializedValue.cs +46 -0
- package/Editor/BuildMenu.cs +19 -2
- package/Editor/CopyAssetBundlePathToClipboard.cs +3 -2
- package/Editor/CreateAssetBundles.cs +6 -6
- package/Editor/NetworkPrefabManager.cs +1 -1
- package/Editor/Packages/AirshipPackageAutoUpdater.cs +1 -1
- package/Editor/Packages/AirshipPackagesWindow.cs +3 -3
- package/Editor/Publish/Deploy.cs +2 -2
- package/Editor/SetStartupScene.cs +1 -1
- package/Editor/StreamingAssets.cs +3 -4
- package/Editor/TypescriptServices/Compiler/TypescriptCompilationService.cs +8 -5
- package/Editor/Util/AirshipEditorGUI.cs +23 -0
- package/Runtime/Code/AirAssetBundle/AirAssetBundle.cs +1 -1
- package/Runtime/Code/AirshipConst.cs +3 -2
- package/Runtime/Code/Auth/Socket/SocketManager.cs +1 -1
- package/Runtime/Code/Bootstrap/ServerBootstrap.cs +2 -2
- package/Runtime/Code/Bundles/AssetBridge.cs +14 -14
- package/Runtime/Code/Bundles/NetworkPrefabLoader.cs +2 -1
- package/Runtime/Code/Bundles/SystemRoot.cs +54 -53
- package/Runtime/Code/GameConfig/GameConfig.cs +4 -3
- package/Runtime/Code/Http/Internal/InternalHttpManager.cs +2 -7
- package/Runtime/Code/Http/Public/HttpManager.cs +4 -0
- package/Runtime/Code/Luau/AirshipComponent.cs +2 -2
- package/Runtime/Code/Luau/AirshipScriptableObject.cs +5 -4
- package/Runtime/Code/Luau/LuauCore.cs +9 -0
- package/Runtime/Code/Luau/LuauCoreCallbacks.cs +7 -3
- package/Runtime/Code/Luau/LuauPlugin.cs +85 -24
- package/Runtime/Code/LuauAPI/Bridge.cs +27 -13
- package/Runtime/Code/Misc/AirshipBuildInfo.cs +1 -2
- package/Runtime/Code/Network/Simulation/AirshipNetworkedObject.cs +6 -2
- package/Runtime/Code/Network/StateSystem/AirshipNetworkedStateManager.cs +5 -1
- package/Runtime/Code/Network/UdpPingTool.cs +5 -2
- package/Runtime/Code/NetworkRateLimit/NetworkLimiter.asmdef +3 -0
- package/Runtime/Code/NetworkRateLimit/NetworkLimiter.asmdef.meta +3 -0
- package/Runtime/Code/NetworkRateLimit/NetworkRateLimiter.cs +36 -0
- package/Runtime/Code/NetworkRateLimit/NetworkRateLimiter.cs.meta +3 -0
- package/Runtime/Code/NetworkRateLimit.meta +3 -0
- package/Runtime/Code/Player/Character/MovementSystems/Character/CharacterMovement.cs +4 -2
- package/Runtime/Code/Quality/QualityManager.cs +10 -4
- package/Runtime/Code/TSCodeGen/Editor/CsToTs/TypeScript/Helper.cs +1 -1
- package/Runtime/Code/TSCodeGen/TypeGenerator.cs +2 -2
- package/Runtime/Code/Voice/AirshipUniVoice.cs +251 -0
- package/Runtime/Code/Voice/AirshipUniVoice.cs.meta +3 -0
- package/Runtime/Code/Voice/AirshipVoiceUtils.cs +19 -0
- package/Runtime/Code/Voice/AirshipVoiceUtils.cs.meta +3 -0
- package/Runtime/Code/Voice/PlayerAudioSourceOutput.cs +66 -0
- package/Runtime/Code/Voice/PlayerAudioSourceOutput.cs.meta +3 -0
- package/Runtime/Code/Voice/SpeakingLevelEventFilter.cs +29 -0
- package/Runtime/Code/Voice/SpeakingLevelEventFilter.cs.meta +3 -0
- package/Runtime/Code/Voice.meta +3 -0
- package/Runtime/Code/VoxelWorld/VoxelBlocks.cs +1 -1
- package/Runtime/DevConsole/Runtime/DevConsoleMono.cs +4 -4
- package/Runtime/Plugins/Android/libLuauPlugin.so +0 -0
- package/Runtime/Plugins/Linux/libLuauPlugin.so +0 -0
- package/Runtime/Plugins/Mac/LuauPlugin.bundle/Contents/MacOS/LuauPlugin +0 -0
- package/Runtime/Plugins/Windows/x64/LuauPlugin.dll +0 -0
- package/Runtime/Plugins/iOS/LuauPluginIos.a +0 -0
- package/Runtime/Scenes/CoreScene.unity +6 -24
- package/ThirdParty/Adrenak.BRW/README.md +12 -0
- package/ThirdParty/{UniVoice.UniMicInput → Adrenak.BRW}/README.md.meta +1 -1
- package/ThirdParty/Adrenak.BRW/Runtime/Adrenak.BRW.asmdef +3 -0
- package/ThirdParty/{UniVoice.AudioSourceOutput/Runtime/Adrenak.UniVoice.AudioSourceOutput.asmdef.meta → Adrenak.BRW/Runtime/Adrenak.BRW.asmdef.meta} +1 -1
- package/ThirdParty/Adrenak.BRW/Runtime/BytesReader.cs +342 -0
- package/ThirdParty/{UniVoice.AudioSourceOutput/Runtime/CircularAudioClip.cs.meta → Adrenak.BRW/Runtime/BytesReader.cs.meta} +1 -1
- package/ThirdParty/Adrenak.BRW/Runtime/BytesWriter.cs +401 -0
- package/ThirdParty/{UniVoice.AudioSourceOutput/Runtime/Extensions.cs.meta → Adrenak.BRW/Runtime/BytesWriter.cs.meta} +1 -1
- package/ThirdParty/Adrenak.BRW/Runtime/EndianUtility.cs +34 -0
- package/ThirdParty/{UniVoice.AudioSourceOutput/Runtime/InbuiltAudioBuffer.cs.meta → Adrenak.BRW/Runtime/EndianUtility.cs.meta} +1 -1
- package/ThirdParty/{UniVoice.UniMicInput → Adrenak.BRW}/Runtime.meta +1 -1
- package/ThirdParty/Adrenak.BRW/package.json +15 -0
- package/ThirdParty/{UniVoice.AudioSourceOutput → Adrenak.BRW}/package.json.meta +1 -1
- package/ThirdParty/{UniVoice.AudioSourceOutput.meta → Adrenak.BRW.meta} +1 -1
- package/ThirdParty/Adrenak.RNNoise4Unity/LICENSE +32 -0
- package/ThirdParty/{UniVoice.UniMicInput → Adrenak.RNNoise4Unity}/LICENSE.meta +1 -1
- package/ThirdParty/Adrenak.RNNoise4Unity/Plugins/Android/arm64/librnnoise.so +0 -0
- package/ThirdParty/Adrenak.RNNoise4Unity/Plugins/Android/arm64/librnnoise.so.meta +70 -0
- package/ThirdParty/Adrenak.RNNoise4Unity/Plugins/Android/arm64.meta +8 -0
- package/ThirdParty/Adrenak.RNNoise4Unity/Plugins/Android/armeabi-v7a/librnnoise.so +0 -0
- package/ThirdParty/Adrenak.RNNoise4Unity/Plugins/Android/armeabi-v7a/librnnoise.so.meta +70 -0
- package/ThirdParty/Adrenak.RNNoise4Unity/Plugins/Android/armeabi-v7a.meta +8 -0
- package/ThirdParty/Adrenak.RNNoise4Unity/Plugins/Android.meta +8 -0
- package/ThirdParty/Adrenak.RNNoise4Unity/Plugins/Windows/x86_64/rnnoise.dll +0 -0
- package/ThirdParty/Adrenak.RNNoise4Unity/Plugins/Windows/x86_64/rnnoise.dll.meta +80 -0
- package/ThirdParty/Adrenak.RNNoise4Unity/Plugins/Windows/x86_64.meta +8 -0
- package/ThirdParty/Adrenak.RNNoise4Unity/Plugins/Windows.meta +8 -0
- package/ThirdParty/Adrenak.RNNoise4Unity/Plugins/iOS/librnnoise.a +0 -0
- package/ThirdParty/Adrenak.RNNoise4Unity/Plugins/iOS/librnnoise.a.meta +80 -0
- package/ThirdParty/Adrenak.RNNoise4Unity/Plugins/iOS.meta +8 -0
- package/ThirdParty/{UniVoice.UniMicInput.meta → Adrenak.RNNoise4Unity/Plugins.meta} +1 -1
- package/ThirdParty/{UniVoice.AudioSourceOutput/Runtime/Adrenak.UniVoice.AudioSourceOutput.asmdef → Adrenak.RNNoise4Unity/Runtime/Adrenak.RNNoise4Unity.Runtime.asmdef} +3 -3
- package/ThirdParty/{UniVoice.UniMicInput/Runtime/Adrenak.UniVoice.UniMicInput.asmdef.meta → Adrenak.RNNoise4Unity/Runtime/Adrenak.RNNoise4Unity.Runtime.asmdef.meta} +1 -1
- package/ThirdParty/Adrenak.RNNoise4Unity/Runtime/Denoiser.cs +131 -0
- package/ThirdParty/Adrenak.RNNoise4Unity/Runtime/Denoiser.cs.meta +11 -0
- package/ThirdParty/Adrenak.RNNoise4Unity/Runtime/Native.cs +29 -0
- package/ThirdParty/Adrenak.RNNoise4Unity/Runtime/Native.cs.meta +11 -0
- package/ThirdParty/{UniVoice.AudioSourceOutput → Adrenak.RNNoise4Unity}/Runtime.meta +1 -1
- package/ThirdParty/Adrenak.RNNoise4Unity/package.json +22 -0
- package/ThirdParty/{UniVoice.UniMicInput → Adrenak.RNNoise4Unity}/package.json.meta +1 -1
- package/ThirdParty/{UniMic/Samples.meta → Adrenak.RNNoise4Unity.meta} +1 -1
- package/ThirdParty/Adrenak.UniVoice/README.md +125 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Adrenak.UniVoice.Runtime.asmdef +22 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/ClientSession.cs +300 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/ClientSession.cs.meta +11 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Common/SimpleVad.cs +379 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Common/SimpleVad.cs.meta +11 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Common/Utils.cs +55 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Common/Utils.cs.meta +11 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Common/WavFileWriter.cs +124 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Common/WavFileWriter.cs.meta +11 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Common.meta +8 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Filters/Concentus Opus Filters/ConcentusDecodeFilter.cs +80 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Filters/Concentus Opus Filters/ConcentusDecodeFilter.cs.meta +11 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Filters/Concentus Opus Filters/ConcentusEncodeFilter.cs +156 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Filters/Concentus Opus Filters/ConcentusEncodeFilter.cs.meta +11 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Filters/Concentus Opus Filters/ConcentusFrequencies.cs +31 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Filters/Concentus Opus Filters/ConcentusFrequencies.cs.meta +11 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Filters/Concentus Opus Filters.meta +8 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Filters/GaussianAudioBlur.cs +90 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Filters/GaussianAudioBlur.cs.meta +11 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Filters/RNNoise/RNNoiseFilter.cs +26 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Filters/RNNoise/RNNoiseFilter.cs.meta +11 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Filters/RNNoise.meta +8 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Filters/SimpleVadFilter.cs +17 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Filters/SimpleVadFilter.cs.meta +11 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Filters.meta +8 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Inputs/EmptyAudioInput.cs +24 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Inputs/EmptyAudioInput.cs.meta +11 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Inputs/UniMicInput.cs +51 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Inputs/UniMicInput.cs.meta +11 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Inputs.meta +8 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Networks/FakeNetwork.cs +6 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Networks/FakeNetwork.cs.meta +11 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Networks/Mirror/MirrorClient.cs +190 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Networks/Mirror/MirrorClient.cs.meta +11 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Networks/Mirror/MirrorMessage.cs +19 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Networks/Mirror/MirrorMessage.cs.meta +11 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Networks/Mirror/MirrorMessageTags.cs +14 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Networks/Mirror/MirrorMessageTags.cs.meta +11 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Networks/Mirror/MirrorModeObserver.cs +48 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Networks/Mirror/MirrorModeObserver.cs.meta +11 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Networks/Mirror/MirrorServer.cs +285 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Networks/Mirror/MirrorServer.cs.meta +11 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Networks/Mirror.meta +8 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Networks.meta +8 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Outputs/StreamedAudioSourceOutput.cs +56 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Outputs/StreamedAudioSourceOutput.cs.meta +11 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Outputs.meta +8 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Impl.meta +8 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Interfaces/IAudioClient.cs +81 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Interfaces/IAudioClient.cs.meta +11 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Interfaces/IAudioFilter.cs +10 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Interfaces/IAudioFilter.cs.meta +11 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Interfaces/IAudioInput.cs +13 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Interfaces/IAudioOutput.cs +19 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Interfaces/IAudioOutputFactory.cs +11 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Interfaces/IAudioServer.cs +41 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Interfaces/IAudioServer.cs.meta +11 -0
- package/ThirdParty/{UniVoice/Runtime/Types/ChatroomAudioSegment.cs → Adrenak.UniVoice/Runtime/Types/AudioFrame.cs} +7 -6
- package/ThirdParty/Adrenak.UniVoice/Runtime/Types/VoiceSettings.cs +73 -0
- package/ThirdParty/Adrenak.UniVoice/Runtime/Types/VoiceSettings.cs.meta +11 -0
- package/ThirdParty/Adrenak.UniVoice/package.json +39 -0
- package/ThirdParty/Adrenak.UniVoice.meta +8 -0
- package/ThirdParty/Concentus-Unity/LICENSE +38 -0
- package/ThirdParty/{UniVoice.AudioSourceOutput → Concentus-Unity}/LICENSE.meta +1 -1
- package/ThirdParty/Concentus-Unity/README.md +6 -0
- package/ThirdParty/{UniVoice.AudioSourceOutput → Concentus-Unity}/README.md.meta +1 -1
- package/ThirdParty/Concentus-Unity/Runtime/Celt/Bands.cs +2494 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/Bands.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/CWRS.cs +320 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/CWRS.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/CeltCommon.cs +1381 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/CeltCommon.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/CeltConstants.cs +93 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/CeltConstants.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/CeltLPC.cs +156 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/CeltLPC.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/CeltPitchXCorr.cs +140 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/CeltPitchXCorr.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/Enums/Spread.cs +45 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/Enums/Spread.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/Enums.meta +8 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/Kernels.cs +371 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/Kernels.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/KissFFT.cs +456 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/KissFFT.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/Laplace.cs +157 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/Laplace.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/MDCT.cs +252 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/MDCT.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/Pitch.cs +467 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/Pitch.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/QuantizeBands.cs +546 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/QuantizeBands.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/Rate.cs +893 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/Rate.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/Structs/AnalysisInfo.cs +74 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/Structs/AnalysisInfo.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/Structs/CELTDecoder.cs +866 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/Structs/CELTDecoder.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/Structs/CELTMode.cs +118 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/Structs/CELTMode.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/Structs/CeltEncoder.cs +1303 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/Structs/CeltEncoder.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/Structs/FFTState.cs +54 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/Structs/FFTState.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/Structs/MDCTLookup.cs +59 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/Structs/MDCTLookup.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/Structs/PulseCache.cs +59 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/Structs/PulseCache.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/Structs.meta +8 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/Tables.cs +1128 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/Tables.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/VQ.cs +406 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt/VQ.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Celt.meta +8 -0
- package/ThirdParty/Concentus-Unity/Runtime/Common/Autocorrelation.cs +282 -0
- package/ThirdParty/Concentus-Unity/Runtime/Common/Autocorrelation.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Common/CPlusPlus/Arrays.cs +250 -0
- package/ThirdParty/Concentus-Unity/Runtime/Common/CPlusPlus/Arrays.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Common/CPlusPlus/BoxedValue.cs +97 -0
- package/ThirdParty/Concentus-Unity/Runtime/Common/CPlusPlus/BoxedValue.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Common/CPlusPlus/Pointer.cs +563 -0
- package/ThirdParty/Concentus-Unity/Runtime/Common/CPlusPlus/Pointer.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Common/CPlusPlus.meta +8 -0
- package/ThirdParty/Concentus-Unity/Runtime/Common/EntropyCoder.cs +779 -0
- package/ThirdParty/Concentus-Unity/Runtime/Common/EntropyCoder.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Common/Inlines.cs +2709 -0
- package/ThirdParty/Concentus-Unity/Runtime/Common/Inlines.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Common/SpeexResampler.cs +1081 -0
- package/ThirdParty/Concentus-Unity/Runtime/Common/SpeexResampler.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Common.meta +8 -0
- package/ThirdParty/Concentus-Unity/Runtime/Concentus-Unity.Runtime.asmdef +3 -0
- package/ThirdParty/Concentus-Unity/Runtime/Concentus-Unity.Runtime.asmdef.meta +7 -0
- package/ThirdParty/Concentus-Unity/Runtime/IOpusDecoder.cs +138 -0
- package/ThirdParty/Concentus-Unity/Runtime/IOpusDecoder.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/IOpusEncoder.cs +204 -0
- package/ThirdParty/Concentus-Unity/Runtime/IOpusEncoder.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/IOpusMultiStreamDecoder.cs +123 -0
- package/ThirdParty/Concentus-Unity/Runtime/IOpusMultiStreamDecoder.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/IOpusMultiStreamEncoder.cs +196 -0
- package/ThirdParty/Concentus-Unity/Runtime/IOpusMultiStreamEncoder.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/IResampler.cs +164 -0
- package/ThirdParty/Concentus-Unity/Runtime/IResampler.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Analysis.cs +590 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Analysis.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/CodecHelpers.cs +712 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/CodecHelpers.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Downmix.cs +125 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Downmix.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Enums/OpusApplication.cs +57 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Enums/OpusApplication.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Enums/OpusBandwidth.cs +70 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Enums/OpusBandwidth.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Enums/OpusControl.cs +96 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Enums/OpusControl.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Enums/OpusError.cs +91 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Enums/OpusError.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Enums/OpusFramesize.cs +80 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Enums/OpusFramesize.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Enums/OpusMode.cs +45 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Enums/OpusMode.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Enums/OpusSignal.cs +52 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Enums/OpusSignal.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Enums.meta +8 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/MultiLayerPerceptron.cs +111 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/MultiLayerPerceptron.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/OpusCompare.cs +340 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/OpusCompare.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/OpusConstants.cs +66 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/OpusConstants.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/OpusException.cs +92 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/OpusException.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/OpusMultistream.cs +99 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/OpusMultistream.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/ChannelLayout.cs +60 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/ChannelLayout.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/MLP.cs +52 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/MLP.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/OpusDecoder.cs +1002 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/OpusDecoder.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/OpusEncoder.cs +2091 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/OpusEncoder.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/OpusMSDecoder.cs +526 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/OpusMSDecoder.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/OpusMSEncoder.cs +1257 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/OpusMSEncoder.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/OpusPacketInfo.cs +598 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/OpusPacketInfo.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/OpusRepacketizer.cs +563 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/OpusRepacketizer.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/StereoWidthState.cs +61 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/StereoWidthState.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/TonalityAnalysisState.cs +140 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/TonalityAnalysisState.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/VorbisLayout.cs +69 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs/VorbisLayout.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Structs.meta +8 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Tables.cs +298 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus/Tables.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Opus.meta +8 -0
- package/ThirdParty/Concentus-Unity/Runtime/OpusCodecFactory.cs +131 -0
- package/ThirdParty/Concentus-Unity/Runtime/OpusCodecFactory.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/ResamplerFactory.cs +91 -0
- package/ThirdParty/Concentus-Unity/Runtime/ResamplerFactory.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/ApplySineWindow.cs +118 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/ApplySineWindow.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/BWExpander.cs +90 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/BWExpander.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/BurgModified.cs +323 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/BurgModified.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/CNG.cs +232 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/CNG.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/CodeSigns.cs +153 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/CodeSigns.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/CorrelateMatrix.cs +186 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/CorrelateMatrix.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/DecodeAPI.cs +463 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/DecodeAPI.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/DecodeCore.cs +278 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/DecodeCore.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/DecodeIndices.cs +181 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/DecodeIndices.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/DecodeParameters.cs +141 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/DecodeParameters.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/DecodePitch.cs +90 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/DecodePitch.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/DecodePulses.cs +138 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/DecodePulses.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/EncodeAPI.cs +741 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/EncodeAPI.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/EncodeIndices.cs +225 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/EncodeIndices.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/EncodePulses.cs +280 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/EncodePulses.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Enums/DecoderAPIFlag.cs +41 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Enums/DecoderAPIFlag.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Enums/SilkError.cs +91 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Enums/SilkError.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Enums.meta +8 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Filters.cs +625 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Filters.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/FindLPC.cs +184 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/FindLPC.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/FindLTP.cs +296 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/FindLTP.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/FindPitchLags.cs +165 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/FindPitchLags.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/FindPredCoefs.cs +171 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/FindPredCoefs.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/GainQuantization.cs +187 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/GainQuantization.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/HPVariableCutoff.cs +90 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/HPVariableCutoff.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/K2A.cs +92 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/K2A.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/LPCInversePredGain.cs +169 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/LPCInversePredGain.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/LTPAnalysisFilter.cs +103 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/LTPAnalysisFilter.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/LTPScaleControl.cs +66 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/LTPScaleControl.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/LinearAlgebra.cs +245 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/LinearAlgebra.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/NLSF.cs +1270 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/NLSF.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/NoiseShapeAnalysis.cs +496 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/NoiseShapeAnalysis.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/PLC.cs +486 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/PLC.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/PitchAnalysisCore.cs +792 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/PitchAnalysisCore.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/ProcessGains.cs +143 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/ProcessGains.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/QuantizeLTPGains.cs +153 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/QuantizeLTPGains.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/RegularizeCorrelations.cs +61 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/RegularizeCorrelations.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Resampler.cs +744 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Resampler.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/ResidualEnergy.cs +193 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/ResidualEnergy.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Schur.cs +198 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Schur.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/ShellCoder.cs +210 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/ShellCoder.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Sigmoid.cs +93 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Sigmoid.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/SilkConstants.cs +311 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/SilkConstants.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Sort.cs +184 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Sort.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Stereo.cs +545 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Stereo.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/CNGState.cs +59 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/CNGState.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/DecControlState.cs +72 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/DecControlState.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/EncControlState.cs +217 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/EncControlState.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/NLSFCodebook.cs +108 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/NLSFCodebook.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/PLCStruct.cs +75 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/PLCStruct.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SideInfoIndices.cs +88 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SideInfoIndices.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkChannelDecoder.cs +360 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkChannelDecoder.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkChannelEncoder.cs +1265 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkChannelEncoder.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkDecoder.cs +70 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkDecoder.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkDecoderControl.cs +63 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkDecoderControl.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkEncoder.cs +105 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkEncoder.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkEncoderControl.cs +105 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkEncoderControl.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkLPState.cs +108 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkLPState.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkNSQState.cs +1313 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkNSQState.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkPrefilterState.cs +70 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkPrefilterState.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkResamplerState.cs +94 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkResamplerState.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkShapeState.cs +57 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkShapeState.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkVADState.cs +108 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/SilkVADState.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/StereoDecodeState.cs +52 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/StereoDecodeState.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/StereoEncodeState.cs +71 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/StereoEncodeState.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/TOCStruct.cs +66 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs/TOCStruct.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Structs.meta +8 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/SumSqrShift.cs +180 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/SumSqrShift.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Tables.cs +1065 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/Tables.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/TuningParameters.cs +174 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/TuningParameters.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/VQ_WMat_EC.cs +134 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/VQ_WMat_EC.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/VoiceActivityDetection.cs +410 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk/VoiceActivityDetection.cs.meta +11 -0
- package/ThirdParty/Concentus-Unity/Runtime/Silk.meta +8 -0
- package/ThirdParty/Concentus-Unity/Runtime.meta +8 -0
- package/ThirdParty/Concentus-Unity/package.json +13 -0
- package/ThirdParty/Concentus-Unity/package.json.meta +7 -0
- package/ThirdParty/Concentus-Unity.meta +8 -0
- package/ThirdParty/Mirror/Core/NetworkManager.cs +12 -1
- package/ThirdParty/UniMic/Editor/MicAudioSourceEditor.cs +32 -0
- package/ThirdParty/UniMic/README.md +69 -76
- package/ThirdParty/UniMic/Runtime/Mic.cs +321 -164
- package/ThirdParty/UniMic/Runtime/MicAudioSource.cs +30 -23
- package/ThirdParty/UniMic/Runtime/StreamedAudioSource.cs +373 -0
- package/ThirdParty/UniMic/Runtime/StreamedAudioSource.cs.meta +11 -0
- package/ThirdParty/UniMic/package.json +10 -3
- package/ThirdParty/UniMic.meta +3 -2
- package/package.json +6 -2
- package/Runtime/Code/VoiceChat/AirshipUniVoiceNetwork.cs +0 -469
- package/Runtime/Code/VoiceChat/AirshipUniVoiceNetwork.cs.meta +0 -3
- package/Runtime/Code/VoiceChat.meta +0 -3
- package/ThirdParty/UniMic/Editor/MicEditor.cs +0 -58
- package/ThirdParty/UniMic/Samples/UniMic Sample.unity +0 -377
- package/ThirdParty/UniMic/Samples/UniMic Sample.unity.meta +0 -7
- package/ThirdParty/UniMic/Samples/UniMic SampleSettings.lighting +0 -62
- package/ThirdParty/UniMic/Samples/UniMic SampleSettings.lighting.meta +0 -8
- package/ThirdParty/UniVoice/CHANGELOG.md +0 -67
- package/ThirdParty/UniVoice/CHANGELOG.md.meta +0 -7
- package/ThirdParty/UniVoice/README.md +0 -84
- package/ThirdParty/UniVoice/Runtime/Adrenak.UniVoice.Runtime.asmdef +0 -3
- package/ThirdParty/UniVoice/Runtime/ChatroomAgent.cs +0 -268
- package/ThirdParty/UniVoice/Runtime/ChatroomAgent.cs.meta +0 -11
- package/ThirdParty/UniVoice/Runtime/Interfaces/IAudioInput.cs +0 -36
- package/ThirdParty/UniVoice/Runtime/Interfaces/IAudioOutput.cs +0 -45
- package/ThirdParty/UniVoice/Runtime/Interfaces/IAudioOutputFactory.cs +0 -18
- package/ThirdParty/UniVoice/Runtime/Interfaces/IChatroomNetwork.cs +0 -126
- package/ThirdParty/UniVoice/Runtime/Interfaces/IChatroomNetwork.cs.meta +0 -11
- package/ThirdParty/UniVoice/Runtime/Types/ChatroomAgentMode.cs +0 -22
- package/ThirdParty/UniVoice/Runtime/Types/ChatroomAgentMode.cs.meta +0 -11
- package/ThirdParty/UniVoice/Runtime/Types/ChatroomPeerSettings.cs +0 -18
- package/ThirdParty/UniVoice/Runtime/Types/ChatroomPeerSettings.cs.meta +0 -11
- package/ThirdParty/UniVoice/package.json +0 -29
- package/ThirdParty/UniVoice.AudioSourceOutput/CHANGELOG.md +0 -0
- package/ThirdParty/UniVoice.AudioSourceOutput/CHANGELOG.md.meta +0 -7
- package/ThirdParty/UniVoice.AudioSourceOutput/LICENSE +0 -21
- package/ThirdParty/UniVoice.AudioSourceOutput/README.md +0 -0
- package/ThirdParty/UniVoice.AudioSourceOutput/Runtime/CircularAudioClip.cs +0 -101
- package/ThirdParty/UniVoice.AudioSourceOutput/Runtime/Extensions.cs +0 -38
- package/ThirdParty/UniVoice.AudioSourceOutput/Runtime/InbuiltAudioBuffer.cs +0 -8
- package/ThirdParty/UniVoice.AudioSourceOutput/Runtime/UniVoiceAudioSourceOutput.cs +0 -201
- package/ThirdParty/UniVoice.AudioSourceOutput/Runtime/UniVoiceAudioSourceOutput.cs.meta +0 -11
- package/ThirdParty/UniVoice.AudioSourceOutput/package.json +0 -34
- package/ThirdParty/UniVoice.UniMicInput/CHANGELOG.md +0 -0
- package/ThirdParty/UniVoice.UniMicInput/CHANGELOG.md.meta +0 -7
- package/ThirdParty/UniVoice.UniMicInput/LICENSE +0 -21
- package/ThirdParty/UniVoice.UniMicInput/README.md +0 -0
- package/ThirdParty/UniVoice.UniMicInput/Runtime/Adrenak.UniVoice.UniMicInput.asmdef +0 -16
- package/ThirdParty/UniVoice.UniMicInput/Runtime/UniVoiceUniMicInput.cs +0 -39
- package/ThirdParty/UniVoice.UniMicInput/Runtime/UniVoiceUniMicInput.cs.meta +0 -11
- package/ThirdParty/UniVoice.UniMicInput/package.json +0 -37
- package/ThirdParty/UniVoice.meta +0 -8
- /package/ThirdParty/{UniVoice → Adrenak.UniVoice}/LICENSE +0 -0
- /package/ThirdParty/{UniVoice → Adrenak.UniVoice}/LICENSE.meta +0 -0
- /package/ThirdParty/{UniVoice → Adrenak.UniVoice}/README.md.meta +0 -0
- /package/ThirdParty/{UniVoice → Adrenak.UniVoice}/Runtime/Adrenak.UniVoice.Runtime.asmdef.meta +0 -0
- /package/ThirdParty/{UniVoice → Adrenak.UniVoice}/Runtime/Interfaces/IAudioInput.cs.meta +0 -0
- /package/ThirdParty/{UniVoice → Adrenak.UniVoice}/Runtime/Interfaces/IAudioOutput.cs.meta +0 -0
- /package/ThirdParty/{UniVoice → Adrenak.UniVoice}/Runtime/Interfaces/IAudioOutputFactory.cs.meta +0 -0
- /package/ThirdParty/{UniVoice → Adrenak.UniVoice}/Runtime/Interfaces.meta +0 -0
- /package/ThirdParty/{UniVoice/Runtime/Types/ChatroomAudioSegment.cs.meta → Adrenak.UniVoice/Runtime/Types/AudioFrame.cs.meta} +0 -0
- /package/ThirdParty/{UniVoice → Adrenak.UniVoice}/Runtime/Types.meta +0 -0
- /package/ThirdParty/{UniVoice → Adrenak.UniVoice}/Runtime.meta +0 -0
- /package/ThirdParty/{UniVoice → Adrenak.UniVoice}/package.json.meta +0 -0
- /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:
|
|
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.
|
|
167
|
-
.Where((path) => !path.
|
|
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.
|
|
175
|
+
.Select((p) => p.ToLowerInvariant())
|
|
176
176
|
.Select((p) => {
|
|
177
|
-
if (p.Contains(target.name.
|
|
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.
|
|
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,
|
|
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
|
-
|
|
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
|
}
|
package/Editor/BuildMenu.cs
CHANGED
|
@@ -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.
|
|
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.
|
|
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".
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
355
|
+
packageSlug = packageDoc.id.ToLowerInvariant(),
|
|
356
356
|
deployCode = true,
|
|
357
357
|
deployAssets = includeAssets
|
|
358
358
|
}), "application/json");
|
package/Editor/Publish/Deploy.cs
CHANGED
|
@@ -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).
|
|
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.
|
|
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
|
-
|
|
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
|
-
|
|
337
|
-
|
|
338
|
-
|
|
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.
|
|
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 =
|
|
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 =
|
|
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.
|
|
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.
|
|
398
|
+
if (this.startupConfig.packages.Find((p) => p.id.ToLowerInvariant() == package.id.ToLowerInvariant()) != null) {
|
|
399
399
|
continue;
|
|
400
400
|
}
|
|
401
401
|
|