So, i have added the two packages Rick shows in the Argon Assault project, but when im going to “connect” my Player Controls script to the Ship, it says it can’t add the script because the script class can’t be found. This is my script;
�using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class PlayerControls : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
float horizontalThrow = Input.GetAxis("Horizontal");
Debug.Log(horizontalThrow);
float verticalThrow = Input.GetAxis("Vertical");
Debug.Log(verticalThrow);
}
}