RobotFire/Assets/Scripts/Runtime/Core/PlayerCamera.cs
AderKonstantin a9c05d570c many bullshit updates
models:
1) BuilderBlockout
2) TrooperModel
UI
3) ArmorBar
4) Healthbar
5) Fonts (RobotoMono)
6) Icons
7) Build Profiles
8) Tags for Camera
2024-12-09 13:54:52 +03:00

12 lines
186 B
C#

using Unity.Netcode;
using UnityEngine;
public class PlayerCamera : NetworkBehaviour
{
private Camera playerCamera;
void Start()
{
// Something will be here
}
}