Mirror/doc/Components/index.md

39 lines
3.5 KiB
Markdown
Raw Normal View History

# Components Overview
These core components are included in Mirror:
2020-02-18 04:10:47 +00:00
- [Network Animator](NetworkAnimator.md)
The Network Animator component allows you to synchronize animation states for networked objects. It synchronizes state and parameters from an Animator Controller.
2020-05-09 02:31:34 +00:00
- [Network Authenticator](Authenticators/index.md)
Network Authenticators facilitate integration of user accounts and credentials into your application.
- [Network Discovery](NetworkDiscovery.md)
Network Discovery uses a UDP broadcast on the LAN enabling clients to find the running server and connect to it.
- [Network Ping Display](NetworkPingDisplay.md)
Network Ping Display shows the Ping time for clients using OnGUI
2020-02-18 04:10:47 +00:00
- [Network Identity](NetworkIdentity.md)
The Network Identity component is at the heart of the Mirror networking high-level API. It controls a game objects unique identity on the network, and it uses that identity to make the networking system aware of the game object. It offers two different options for configuration and they are mutually exclusive, which means either one of the options or none can be checked.
2020-05-09 02:31:34 +00:00
- [Network Log Settings](NetworkLogSettings.md)
The Network Log Settings component allows you to configure logging levels and load the settings in a build.
- [Network Headless Logger](NetworkHeadlessLogger.md)
Network Headless Logger adds color to log when running in headless mode
2020-02-18 04:10:47 +00:00
- [Network Manager](NetworkManager.md)
The Network Manager is a component for managing the networking aspects of a multiplayer game.
2020-02-18 04:10:47 +00:00
- [Network Manager HUD](NetworkManagerHUD.md)
The Network Manager HUD is a quick-start tool to help you start building your multiplayer game straight away, without first having to build a user interface for game creation/connection/joining. It allows you to jump straight into your gameplay programming, and means you can build your own version of these controls later in your development schedule.
- [Network Match Checker](NetworkMatchChecker.md)
The Network Match Checker component controls visibility of networked objects based on match id.
2020-05-09 02:31:34 +00:00
- [Network Proximity Checker](NetworkProximityChecker.md)
The Network Proximity Checker component controls the visibility of game objects for network clients, based on proximity to players.
2020-02-18 04:10:47 +00:00
- [Network Room Manager](NetworkRoomManager.md)
2019-09-21 04:28:30 +00:00
The Network Room Manager is an extension component of Network Manager that provides a basic functional room.
2020-02-18 04:10:47 +00:00
- [Network Room Player](NetworkRoomPlayer.md)
2019-09-21 04:28:30 +00:00
The Network Room Player is a component that's required on Player prefabs used in the Room Scene with the Network Room Manager above.
2020-05-09 02:31:34 +00:00
- [Network Scene Checker](NetworkSceneChecker.md)
The Network Scene Checker component controls visibility of networked objects between scenes.
2020-02-18 04:10:47 +00:00
- [Network Start Position](NetworkStartPosition.md)
Network Start Position is used by the Network Manager when creating player objects. The position and rotation of the Network Start Position are used to place the newly created player object.
2020-02-18 04:10:47 +00:00
- [Network Transform](NetworkTransform.md)
The Network Transform component synchronizes the movement and rotation of game objects across the network. Note that the network Transform component only synchronizes spawned networked game objects.
2020-02-18 04:10:47 +00:00
- [Network Transform Child](NetworkTransformChild.md)
The Network Transform Child component synchronizes the position and rotation of the child game object of a game object with a Network Transform component.