I am following a beginners' unity tutorial, and the guy I am watching has special colours for different types of text. (Orange for vars, blue for floats etc.) He also has autocomplete suggestions from unity, for example there's a function in the unity camera called ScreenToWorldPoint. When he was writing it out, he got an autocomplete suggestion to do it but I didn't. This is the same with all other unity-only functions.
The guy has his visual studio settings available for download, which I did so the problem isn't with that. I think it must be in the 'connection' between unity and vs.
using UnityEngine;
public class PlayerMovement : MonoBehaviour
{
public float moveSpeed = 5f;
public Rigidbody2D rb;
public Camera cam;
Vector2 movement;
Vector2 mousePos;
In the video, MonoBehaviour , Vector2 and UnityEngine are all coloured but in my version of vs they're not. Using, public and float are all highlighted as they should be though. Link to video: https://www.youtube.com/watch?v=LNLVOjbrQj4