Update FishNet

This commit is contained in:
2026-04-07 03:11:52 +07:00
parent 9675b7b31d
commit ba7513d478
869 changed files with 3675 additions and 2764 deletions
@@ -0,0 +1,19 @@
namespace FishNet.Managing.Observing
{
/// <summary>
/// A configuration which affects the level of detail for a connection.
/// </summary>
public struct LevelOfDetail
{
/// <summary>
/// How often data will send when on this level of detail.
/// </summary>
public ushort SendInterval;
/// <summary>
/// Distance a connection's objects must be within to use this LevelOfDetail.
/// </summary>
public ushort Distance;
}
}