gg.easy.airship 0.1.2205 → 0.1.2206
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/Editor/Packages/AirshipPackagesWindow.cs +2 -0
- package/Editor/Publish/Deploy.cs +2 -0
- package/Editor/TypescriptCompiler~/utsc.js +139 -139
- package/Runtime/Code/Bundles/SystemRoot.cs +3 -0
- package/Runtime/Code/Health/AirshipProfileExporter.cs +11 -0
- package/Runtime/Code/Voice/AirshipUniVoice.cs +23 -17
- package/Runtime/Code/Voice/PlayerAudioSourceOutput.cs +1 -1
- 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/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Networks/Mirror/MirrorClient.cs +9 -3
- package/ThirdParty/Adrenak.UniVoice/Runtime/Impl/Networks/Mirror/MirrorServer.cs +12 -7
- package/ThirdParty/Agones/AgonesSdk.cs +2 -3
- package/package.json +1 -1
package/Editor/Publish/Deploy.cs
CHANGED
|
@@ -626,6 +626,8 @@ public class Deploy {
|
|
|
626
626
|
private static IEnumerator CompleteDeployment(GameConfig gameConfig, string gameVersionId, string devKey) {
|
|
627
627
|
{
|
|
628
628
|
List<string> uploadedFileIds = new();
|
|
629
|
+
uploadedFileIds.Add("code");
|
|
630
|
+
uploadedFileIds.Add("gameConfig");
|
|
629
631
|
uploadedFileIds.Add("Mac_shared_resources");
|
|
630
632
|
uploadedFileIds.Add("Mac_shared_scenes");
|
|
631
633
|
uploadedFileIds.Add("Windows_shared_resources");
|