Unity Netcode for GameObjects skill for multiplayer networking, RPCs, state synchronization, and server-authoritative gameplay.
Scanned 9/2/2026
Install to Claude Code
npx -y skills add a5c-ai/babysitter --skill unity-netcode --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Unity Netcode?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/a5c-ai-unity-netcode-babysitter)More formats (shields.io, HTML) on the badges page.
---
name: unity-netcode
description: Unity Netcode for GameObjects skill for multiplayer networking, RPCs, state synchronization, and server-authoritative gameplay.
allowed-tools: Read, Grep, Write, Bash, Edit, Glob, WebFetch
graph:
domains: [domain:gaming]
specializations: [specialization:game-development]
skillAreas: [skill-area:multiplayer-networking, skill-area:game-engines]
roles: [role:game-developer]
---
# Unity Netcode Skill
Multiplayer networking using Unity Netcode for GameObjects.
## Overview
This skill provides capabilities for implementing multiplayer games using Unity's Netcode for GameObjects, including state synchronization, RPCs, and network topology configuration.
## Capabilities
### Network Architecture
- Configure client-server topology
- Set up network manager
- Handle player spawning
- Manage scene loading
### State Synchronization
- Implement NetworkVariables
- Configure sync modes
- Handle prediction
- Manage network transforms
### Remote Procedure Calls
- Implement ServerRpc methods
- Create ClientRpc methods
- Handle RPC parameters
- Manage RPC batching
### Player Management
- Handle player connections
- Implement player spawning
- Manage player state
- Handle disconnections
## Prerequisites
- Unity 2021.3+
- Netcode for GameObjects package
- Transport layer (UTP recommended)
## Usage Patterns
### Network Object
```csharp
public class PlayerNetworkBehaviour : NetworkBehaviour
{
private NetworkVariable<int> health = new NetworkVariable<int>(100);
public override void OnNetworkSpawn()
{
if (IsOwner)
{
// Initialize owned player
}
}
[ServerRpc]
public void TakeDamageServerRpc(int damage)
{
health.Value -= damage;
if (health.Value <= 0)
{
DieClientRpc();
}
}
[ClientRpc]
private void DieClientRpc()
{
// Play death effects on all clients
}
}
```
### Network Manager Setup
```csharp
// Configure in NetworkManager component
networkManager.ConnectionApprovalCallback = ApprovalCheck;
void ApprovalCheck(NetworkManager.ConnectionApprovalRequest request,
NetworkManager.ConnectionApprovalResponse response)
{
response.Approved = ValidatePlayer(request.Payload);
response.CreatePlayerObject = true;
}
```
## Best Practices
1. Use NetworkVariables for state
2. Validate all RPCs on server
3. Minimize network traffic
4. Handle disconnections gracefully
5. Test with simulated latency
## References
- [Netcode Documentation](https://docs-multiplayer.unity3d.com/)
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!