-
-
Notifications
You must be signed in to change notification settings - Fork 150
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Improved missing Newtsonsoft dependency for Edgegap will warn less frequently now. - Changed revert ReadPermission values due to some experiencing a Unity serialization bug. - Improved client and server now check for duplicate sceneIds at runtime when a scene is loaded. - Fixed a critical TimeManager error where timing updates were not sending to clients. - Fixed regression where server would kick client for sending an invalid LOD while client owned multiple objects. - Added ColliderExtensions utility. - Fixed detection accuracy on NetworkCollision/Trigger components.
- Loading branch information
FirstGearGames
committed
Feb 23, 2024
1 parent
56e4d76
commit 600063f
Showing
16 changed files
with
501 additions
and
94 deletions.
There are no files selected for viewing
126 changes: 63 additions & 63 deletions
126
Assets/FishNet/Plugins/Edgegap/Models/SDK/ApiModelContainercrashdata.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,63 +1,63 @@ | ||
using System; | ||
using System.Text; | ||
using System.Collections; | ||
using System.Collections.Generic; | ||
using System.Runtime.Serialization; | ||
using Newtonsoft.Json; | ||
|
||
namespace IO.Swagger.Model { | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
[DataContract] | ||
public class ApiModelContainercrashdata { | ||
/// <summary> | ||
/// Auto Generated Field for exit_code | ||
/// </summary> | ||
/// <value>Auto Generated Field for exit_code</value> | ||
[DataMember(Name="exit_code", EmitDefaultValue=false)] | ||
[JsonProperty(PropertyName = "exit_code")] | ||
public int? ExitCode { get; set; } | ||
|
||
/// <summary> | ||
/// Auto Generated Field for message | ||
/// </summary> | ||
/// <value>Auto Generated Field for message</value> | ||
[DataMember(Name="message", EmitDefaultValue=false)] | ||
[JsonProperty(PropertyName = "message")] | ||
public string Message { get; set; } | ||
|
||
/// <summary> | ||
/// Auto Generated Field for restart_count | ||
/// </summary> | ||
/// <value>Auto Generated Field for restart_count</value> | ||
[DataMember(Name="restart_count", EmitDefaultValue=false)] | ||
[JsonProperty(PropertyName = "restart_count")] | ||
public int? RestartCount { get; set; } | ||
|
||
|
||
/// <summary> | ||
/// Get the string presentation of the object | ||
/// </summary> | ||
/// <returns>String presentation of the object</returns> | ||
public override string ToString() { | ||
StringBuilder sb = new StringBuilder(); | ||
sb.Append("class ApiModelContainercrashdata {\n"); | ||
sb.Append(" ExitCode: ").Append(ExitCode).Append("\n"); | ||
sb.Append(" Message: ").Append(Message).Append("\n"); | ||
sb.Append(" RestartCount: ").Append(RestartCount).Append("\n"); | ||
sb.Append("}\n"); | ||
return sb.ToString(); | ||
} | ||
|
||
/// <summary> | ||
/// Get the JSON string presentation of the object | ||
/// </summary> | ||
/// <returns>JSON string presentation of the object</returns> | ||
public string ToJson() { | ||
return JsonConvert.SerializeObject(this, Formatting.Indented); | ||
} | ||
|
||
} | ||
} | ||
using System; | ||
using System.Text; | ||
using System.Collections; | ||
using System.Collections.Generic; | ||
using System.Runtime.Serialization; | ||
using Newtonsoft.Json; | ||
|
||
namespace IO.Swagger.Model { | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
[DataContract] | ||
public class ApiModelContainercrashdata { | ||
/// <summary> | ||
/// Auto Generated Field for exit_code | ||
/// </summary> | ||
/// <value>Auto Generated Field for exit_code</value> | ||
[DataMember(Name="exit_code", EmitDefaultValue=false)] | ||
[JsonProperty(PropertyName = "exit_code")] | ||
public int? ExitCode { get; set; } | ||
|
||
/// <summary> | ||
/// Auto Generated Field for message | ||
/// </summary> | ||
/// <value>Auto Generated Field for message</value> | ||
[DataMember(Name="message", EmitDefaultValue=false)] | ||
[JsonProperty(PropertyName = "message")] | ||
public string Message { get; set; } | ||
|
||
/// <summary> | ||
/// Auto Generated Field for restart_count | ||
/// </summary> | ||
/// <value>Auto Generated Field for restart_count</value> | ||
[DataMember(Name="restart_count", EmitDefaultValue=false)] | ||
[JsonProperty(PropertyName = "restart_count")] | ||
public int? RestartCount { get; set; } | ||
|
||
|
||
/// <summary> | ||
/// Get the string presentation of the object | ||
/// </summary> | ||
/// <returns>String presentation of the object</returns> | ||
public override string ToString() { | ||
StringBuilder sb = new StringBuilder(); | ||
sb.Append("class ApiModelContainercrashdata {\n"); | ||
sb.Append(" ExitCode: ").Append(ExitCode).Append("\n"); | ||
sb.Append(" Message: ").Append(Message).Append("\n"); | ||
sb.Append(" RestartCount: ").Append(RestartCount).Append("\n"); | ||
sb.Append("}\n"); | ||
return sb.ToString(); | ||
} | ||
|
||
/// <summary> | ||
/// Get the JSON string presentation of the object | ||
/// </summary> | ||
/// <returns>JSON string presentation of the object</returns> | ||
public string ToJson() { | ||
return JsonConvert.SerializeObject(this, Formatting.Indented); | ||
} | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.