# Components

These core components are included in Mirror:

* [Network Animator](/docs/manual/components/network-animator.md)\
  The Network Animator component allows you to synchronize animation states for networked objects. It synchronizes state and parameters from an Animator Controller.
* [Network Authenticator](/docs/manual/components/network-authenticators.md)\
  Network Authenticators facilitate integration of user accounts and credentials into your application.
* [Network Discovery](/docs/manual/components/network-discovery.md)\
  Network Discovery uses a UDP broadcast on the LAN enabling clients to find the running server and connect to it.
* [Network Identity](/docs/manual/components/network-identity.md)\
  The Network Identity component is at the heart of the Mirror networking high-level API. It controls a game object’s 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.
* [Network Manager](/docs/manual/components/network-manager.md)\
  The Network Manager is a component for managing the networking aspects of a multiplayer game.
* [Network Manager HUD](/docs/manual/components/network-manager-hud.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 Ping Display](/docs/manual/components/network-ping-display.md)

  Network Ping Display shows the Ping time for clients using OnGUI
* [Network Rigidbody](/docs/manual/components/network-rigidbody.md)

  The Network Rigidbody synchronizes velocity and other properties of a rigidbody across the network.
* [Network Lerp Rigidbody](/docs/manual/components/network-lerp-rigidbody.md)

  The Network Lerp Rigidbody component synchronizes position and velocity of a rigidbody across the network.&#x20;
* [Network Room Manager](/docs/manual/components/network-room-manager.md)\
  The Network Room Manager is an extension component of Network Manager that provides a basic functional room.
* [Network Room Player](/docs/manual/components/network-room-player.md)\
  The Network Room Player is a component that's required on Player prefabs used in the Room Scene with the Network Room Manager above.
* [Network Start Position](/docs/manual/components/network-start-position.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.
* [Network Statistics](/docs/manual/components/network-statistics.md)\
  Shows Network messages and bytes sent & received per second via OnGUI.
* [Network Transform](/docs/manual/components/network-transform.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.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://mirror-networking.gitbook.io/docs/manual/components.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
