fix: broken links to documentation

This commit is contained in:
MrGadget1024 2020-11-23 10:59:11 -05:00
parent e0fb14feea
commit fb8c3c4736
28 changed files with 28 additions and 28 deletions

View File

@ -16,7 +16,7 @@ public interface IApiConnector
/// </summary>
[DisallowMultipleComponent]
[AddComponentMenu("Network/CloudServices/ApiConnector")]
[HelpURL("https://mirror-networking.com/docs/CloudServices/ApiConnector.html")]
[HelpURL("https://mirror-networking.com/docs/api/Mirror.Cloud.ApiConnector.html")]
public class ApiConnector : MonoBehaviour, IApiConnector, ICoroutineRunner
{
#region Inspector

View File

@ -16,7 +16,7 @@ namespace Mirror.Discovery
/// <see cref="NetworkDiscovery">NetworkDiscovery</see> for a sample implementation
/// </summary>
[DisallowMultipleComponent]
[HelpURL("https://mirror-networking.com/docs/Components/NetworkDiscovery.html")]
[HelpURL("https://mirror-networking.com/docs/Articles/Components/NetworkDiscovery.html")]
public abstract class NetworkDiscoveryBase<Request, Response> : MonoBehaviour
where Request : NetworkMessage
where Response : NetworkMessage

View File

@ -5,7 +5,7 @@ namespace Mirror.Discovery
{
[DisallowMultipleComponent]
[AddComponentMenu("Network/NetworkDiscoveryHUD")]
[HelpURL("https://mirror-networking.com/docs/Components/NetworkDiscovery.html")]
[HelpURL("https://mirror-networking.com/docs/Articles/Components/NetworkDiscovery.html")]
[RequireComponent(typeof(NetworkDiscovery))]
public class NetworkDiscoveryHUD : MonoBehaviour
{

View File

@ -3,7 +3,7 @@
namespace Mirror.Experimental
{
[AddComponentMenu("Network/Experimental/NetworkLerpRigidbody")]
[HelpURL("https://mirror-networking.com/docs/Components/NetworkLerpRigidbody.html")]
[HelpURL("https://mirror-networking.com/docs/Articles/Components/NetworkLerpRigidbody.html")]
public class NetworkLerpRigidbody : NetworkBehaviour
{
[Header("Settings")]

View File

@ -3,7 +3,7 @@
namespace Mirror.Experimental
{
[AddComponentMenu("Network/Experimental/NetworkRigidbody")]
[HelpURL("https://mirror-networking.com/docs/Components/NetworkRigidbody.html")]
[HelpURL("https://mirror-networking.com/docs/Articles/Components/NetworkRigidbody.html")]
public class NetworkRigidbody : NetworkBehaviour
{
static readonly ILogger logger = LogFactory.GetLogger(typeof(NetworkRigidbody));

View File

@ -4,7 +4,7 @@ namespace Mirror.Experimental
{
[DisallowMultipleComponent]
[AddComponentMenu("Network/Experimental/NetworkTransformExperimental")]
[HelpURL("https://mirror-networking.com/docs/Components/NetworkTransform.html")]
[HelpURL("https://mirror-networking.com/docs/Articles/Components/NetworkTransform.html")]
public class NetworkTransform : NetworkTransformBase
{
protected override Transform targetTransform => transform;

View File

@ -7,7 +7,7 @@ namespace Mirror.Experimental
/// <para>There must be a NetworkTransform on the root object of the hierarchy. There can be multiple NetworkTransformChild components on an object. This does not use physics for synchronization, it simply synchronizes the localPosition and localRotation of the child transform and lerps towards the recieved values.</para>
/// </summary>
[AddComponentMenu("Network/Experimental/NetworkTransformChildExperimentalExperimental")]
[HelpURL("https://mirror-networking.com/docs/Components/NetworkTransformChild.html")]
[HelpURL("https://mirror-networking.com/docs/Articles/Components/NetworkTransformChild.html")]
public class NetworkTransformChild : NetworkTransformBase
{
[Header("Target")]

View File

@ -15,7 +15,7 @@ namespace Mirror
/// </remarks>
[AddComponentMenu("Network/NetworkAnimator")]
[RequireComponent(typeof(NetworkIdentity))]
[HelpURL("https://mirror-networking.com/docs/Components/NetworkAnimator.html")]
[HelpURL("https://mirror-networking.com/docs/Articles/Components/NetworkAnimator.html")]
public class NetworkAnimator : NetworkBehaviour
{
static readonly ILogger logger = LogFactory.GetLogger(typeof(NetworkAnimator));

View File

@ -12,7 +12,7 @@ namespace Mirror
/// <para>The OnLobby*() functions have empty implementations on the NetworkLobbyManager base class, so the base class functions do not have to be called.</para>
/// </remarks>
[AddComponentMenu("Network/NetworkLobbyManager")]
[HelpURL("https://mirror-networking.com/docs/Components/NetworkRoomManager.html")]
[HelpURL("https://mirror-networking.com/docs/Articles/Components/NetworkRoomManager.html")]
[Obsolete("Use / inherit from NetworkRoomManager instead")]
public class NetworkLobbyManager : NetworkRoomManager { }
}

View File

@ -9,7 +9,7 @@ namespace Mirror
/// </summary>
[DisallowMultipleComponent]
[AddComponentMenu("Network/NetworkLobbyPlayer")]
[HelpURL("https://mirror-networking.com/docs/Components/NetworkRoomPlayer.html")]
[HelpURL("https://mirror-networking.com/docs/Articles/Components/NetworkRoomPlayer.html")]
[Obsolete("Use / inherit from NetworkRoomPlayer instead")]
public class NetworkLobbyPlayer : NetworkRoomPlayer { }
}

View File

@ -12,7 +12,7 @@ namespace Mirror
[DisallowMultipleComponent]
[AddComponentMenu("Network/NetworkMatchChecker")]
[RequireComponent(typeof(NetworkIdentity))]
[HelpURL("https://mirror-networking.com/docs/Components/NetworkMatchChecker.html")]
[HelpURL("https://mirror-networking.com/docs/Articles/Components/NetworkMatchChecker.html")]
public class NetworkMatchChecker : NetworkVisibility
{
static readonly Dictionary<Guid, HashSet<NetworkIdentity>> matchPlayers = new Dictionary<Guid, HashSet<NetworkIdentity>>();

View File

@ -7,7 +7,7 @@ namespace Mirror
/// </summary>
[DisallowMultipleComponent]
[AddComponentMenu("Network/NetworkPingDisplay")]
[HelpURL("https://mirror-networking.com/docs/Components/NetworkPingDisplay.html")]
[HelpURL("https://mirror-networking.com/docs/Articles/Components/NetworkPingDisplay.html")]
public class NetworkPingDisplay : MonoBehaviour
{
public bool showPing = true;

View File

@ -9,7 +9,7 @@ namespace Mirror
/// </summary>
[AddComponentMenu("Network/NetworkProximityChecker")]
[RequireComponent(typeof(NetworkIdentity))]
[HelpURL("https://mirror-networking.com/docs/Components/NetworkProximityChecker.html")]
[HelpURL("https://mirror-networking.com/docs/Articles/Components/NetworkProximityChecker.html")]
public class NetworkProximityChecker : NetworkVisibility
{
/// <summary>

View File

@ -15,7 +15,7 @@ namespace Mirror
/// <para>The OnRoom*() functions have empty implementations on the NetworkRoomManager base class, so the base class functions do not have to be called.</para>
/// </remarks>
[AddComponentMenu("Network/NetworkRoomManager")]
[HelpURL("https://mirror-networking.com/docs/Components/NetworkRoomManager.html")]
[HelpURL("https://mirror-networking.com/docs/Articles/Components/NetworkRoomManager.html")]
public class NetworkRoomManager : NetworkManager
{
static readonly ILogger logger = LogFactory.GetLogger(typeof(NetworkRoomManager));

View File

@ -8,7 +8,7 @@ namespace Mirror
/// </summary>
[DisallowMultipleComponent]
[AddComponentMenu("Network/NetworkRoomPlayer")]
[HelpURL("https://mirror-networking.com/docs/Components/NetworkRoomPlayer.html")]
[HelpURL("https://mirror-networking.com/docs/Articles/Components/NetworkRoomPlayer.html")]
public class NetworkRoomPlayer : NetworkBehaviour
{
static readonly ILogger logger = LogFactory.GetLogger(typeof(NetworkRoomPlayer));

View File

@ -12,7 +12,7 @@ namespace Mirror
[DisallowMultipleComponent]
[AddComponentMenu("Network/NetworkSceneChecker")]
[RequireComponent(typeof(NetworkIdentity))]
[HelpURL("https://mirror-networking.com/docs/Components/NetworkSceneChecker.html")]
[HelpURL("https://mirror-networking.com/docs/Articles/Components/NetworkSceneChecker.html")]
public class NetworkSceneChecker : NetworkVisibility
{
static readonly ILogger logger = LogFactory.GetLogger(typeof(NetworkSceneChecker));

View File

@ -4,7 +4,7 @@ namespace Mirror
{
[DisallowMultipleComponent]
[AddComponentMenu("Network/NetworkTransform")]
[HelpURL("https://mirror-networking.com/docs/Components/NetworkTransform.html")]
[HelpURL("https://mirror-networking.com/docs/Articles/Components/NetworkTransform.html")]
public class NetworkTransform : NetworkTransformBase
{
protected override Transform targetComponent => transform;

View File

@ -7,7 +7,7 @@ namespace Mirror
/// <para>There must be a NetworkTransform on the root object of the hierarchy. There can be multiple NetworkTransformChild components on an object. This does not use physics for synchronization, it simply synchronizes the localPosition and localRotation of the child transform and lerps towards the recieved values.</para>
/// </summary>
[AddComponentMenu("Network/NetworkTransformChild")]
[HelpURL("https://mirror-networking.com/docs/Components/NetworkTransformChild.html")]
[HelpURL("https://mirror-networking.com/docs/Articles/Components/NetworkTransformChild.html")]
public class NetworkTransformChild : NetworkTransformBase
{
[Header("Target")]

View File

@ -1,7 +1,7 @@
using UnityEngine;
/*
Documentation: https://mirror-networking.com/docs/Components/NetworkManager.html
Documentation: https://mirror-networking.com/docs/Articles/Components/NetworkManager.html
API Reference: https://mirror-networking.com/docs/api/Mirror.NetworkManager.html
*/

View File

@ -7,7 +7,7 @@ namespace Mirror.Logging
/// </summary>
[DisallowMultipleComponent]
[AddComponentMenu("Network/NetworkHeadlessLogger")]
[HelpURL("https://mirror-networking.com/docs/Components/NetworkHeadlessLogger.html")]
[HelpURL("https://mirror-networking.com/docs/Articles/Components/NetworkHeadlessLogger.html")]
public class NetworkHeadlessLogger : MonoBehaviour
{
#pragma warning disable CS0414 // unused private members

View File

@ -7,7 +7,7 @@ namespace Mirror.Logging
/// </summary>
[DisallowMultipleComponent]
[AddComponentMenu("Network/NetworkLogSettings")]
[HelpURL("https://mirror-networking.com/docs/Components/NetworkLogSettings.html")]
[HelpURL("https://mirror-networking.com/docs/Articles/Components/NetworkLogSettings.html")]
public class NetworkLogSettings : MonoBehaviour
{
[Header("Log Settings Asset")]

View File

@ -12,7 +12,7 @@ namespace Mirror
/// <summary>
/// Base class for implementing component-based authentication during the Connect phase
/// </summary>
[HelpURL("https://mirror-networking.com/docs/Guides/Authentication.html")]
[HelpURL("https://mirror-networking.com/docs/Articles/Guides/Authentication.html")]
public abstract class NetworkAuthenticator : MonoBehaviour
{
[Header("Event Listeners (optional)")]

View File

@ -20,7 +20,7 @@ public enum SyncMode { Observers, Owner }
/// </remarks>
[AddComponentMenu("")]
[RequireComponent(typeof(NetworkIdentity))]
[HelpURL("https://mirror-networking.com/docs/Guides/NetworkBehaviour.html")]
[HelpURL("https://mirror-networking.com/docs/Articles/Guides/NetworkBehaviour.html")]
public abstract class NetworkBehaviour : MonoBehaviour
{
static readonly ILogger logger = LogFactory.GetLogger(typeof(NetworkBehaviour));

View File

@ -105,7 +105,7 @@ namespace Mirror
/// </remarks>
[DisallowMultipleComponent]
[AddComponentMenu("Network/NetworkIdentity")]
[HelpURL("https://mirror-networking.com/docs/Components/NetworkIdentity.html")]
[HelpURL("https://mirror-networking.com/docs/Articles/Components/NetworkIdentity.html")]
public sealed class NetworkIdentity : MonoBehaviour
{
static readonly ILogger logger = LogFactory.GetLogger<NetworkIdentity>();

View File

@ -20,7 +20,7 @@ public enum NetworkManagerMode { Offline, ServerOnly, ClientOnly, Host }
[DisallowMultipleComponent]
[AddComponentMenu("Network/NetworkManager")]
[HelpURL("https://mirror-networking.com/docs/Components/NetworkManager.html")]
[HelpURL("https://mirror-networking.com/docs/Articles/Components/NetworkManager.html")]
public class NetworkManager : MonoBehaviour
{
static readonly ILogger logger = LogFactory.GetLogger<NetworkManager>();

View File

@ -11,7 +11,7 @@ namespace Mirror
[DisallowMultipleComponent]
[AddComponentMenu("Network/NetworkManagerHUD")]
[RequireComponent(typeof(NetworkManager))]
[HelpURL("https://mirror-networking.com/docs/Components/NetworkManagerHUD.html")]
[HelpURL("https://mirror-networking.com/docs/Articles/Components/NetworkManagerHUD.html")]
public class NetworkManagerHUD : MonoBehaviour
{
NetworkManager manager;

View File

@ -8,7 +8,7 @@ namespace Mirror
/// </summary>
[DisallowMultipleComponent]
[AddComponentMenu("Network/NetworkStartPosition")]
[HelpURL("https://mirror-networking.com/docs/Components/NetworkStartPosition.html")]
[HelpURL("https://mirror-networking.com/docs/Articles/Components/NetworkStartPosition.html")]
public class NetworkStartPosition : MonoBehaviour
{
public void Awake()

View File

@ -6,7 +6,7 @@
namespace Mirror
{
[HelpURL("https://mirror-networking.com/docs/Transports/Fallback.html")]
[HelpURL("https://mirror-networking.com/docs/Articles/Transports/Fallback.html")]
public class FallbackTransport : Transport
{
public Transport[] transports;