gg.easy.airship 0.1.2102 → 0.1.2103
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/Accessories/Clothing/PlatformGearBundleManifestEditor.cs +2 -2
- package/Resources/Fonts/Roboto/Roboto-Regular SDF.asset +19169 -55
- package/Runtime/Code/Player/Character/MovementSystem/CharacterMovement.cs +9 -4
- package/Runtime/Code/Player/PlayerInfo.cs +7 -0
- package/Runtime/Code/Player/PlayerManagerBridge.cs +16 -8
- package/Runtime/Code/VoiceChat/AirshipUniVoiceNetwork.cs +9 -3
- package/package.json +1 -1
|
@@ -109,7 +109,7 @@ namespace Editor.Accessories.Clothing {
|
|
|
109
109
|
(string category, string subcategory) = GetGearCategory(gear);
|
|
110
110
|
|
|
111
111
|
// Create a new class id
|
|
112
|
-
var req = UnityWebRequest.
|
|
112
|
+
var req = UnityWebRequest.PostWwwForm($"{AirshipPlatformUrl.contentService}/gear/resource-id/{easyOrgId}",
|
|
113
113
|
JsonUtility.ToJson(new GearCreateRequest() {
|
|
114
114
|
name = gear.name,
|
|
115
115
|
imageId = "c0e07e88-09d4-4962-b42d-7794a7ad4cb2",
|
|
@@ -133,7 +133,7 @@ namespace Editor.Accessories.Clothing {
|
|
|
133
133
|
|
|
134
134
|
if (string.IsNullOrEmpty(airId)) {
|
|
135
135
|
// Create new air asset
|
|
136
|
-
var req = UnityWebRequest.
|
|
136
|
+
var req = UnityWebRequest.PostWwwForm(
|
|
137
137
|
AirshipPlatformUrl.deploymentService + $"/air-assets/owner-type/ORGANIZATION/owner-id/{easyOrgId}",
|
|
138
138
|
JsonUtility.ToJson(new AirAssetCreateRequest() {
|
|
139
139
|
contentType = "application/airasset",
|