You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RegionConfigurations override VmSize is not deserialized/parsed correctly from the BuildSettings.json file. BuildRegionParams has VmSize with type AzureVmSize however, VmSize is deserialized as a string so returns null
What we could do:
In our PlayFab C# SDK, we may want to add to BuildRegionParams class
...
[JsonProperty("AzureVmSize")] // new addition
[JsonConverter(typeof(StringEnumConverter))] // new addition
public AzureVmSize? VmSize;
...
This could be applied to any other parameters we deserialise/serialise as JSON
Or create an AgentInterfaces class(eg. BuildRegionDetails.cs). It will basically be a duplicate of PlayFab.MultiplayerModels.BuildRegionParams but local to LocalMultiplayerAgent
The text was updated successfully, but these errors were encountered:
New CreateBuild Feature
RegionConfigurations
overrideVmSize
is not deserialized/parsed correctly from theBuildSettings.json
file.BuildRegionParams
hasVmSize
with typeAzureVmSize
however,VmSize
is deserialized as a string so returns nullWhat we could do:
BuildRegionParams
classThis could be applied to any other parameters we deserialise/serialise as JSON
AgentInterfaces
class(eg.BuildRegionDetails.cs
). It will basically be a duplicate ofPlayFab.MultiplayerModels.BuildRegionParams
but local toLocalMultiplayerAgent
The text was updated successfully, but these errors were encountered: