models: 1) BuilderBlockout 2) TrooperModel UI 3) ArmorBar 4) Healthbar 5) Fonts (RobotoMono) 6) Icons 7) Build Profiles 8) Tags for Camera
12 lines
186 B
C#
12 lines
186 B
C#
using Unity.Netcode;
|
|
using UnityEngine;
|
|
|
|
public class PlayerCamera : NetworkBehaviour
|
|
{
|
|
private Camera playerCamera;
|
|
|
|
void Start()
|
|
{
|
|
// Something will be here
|
|
}
|
|
} |