EmissionVision-Group2/Assets/OurScripts/CountrySelectorScript.cs
Nicklas Bourelius f02463302c Highlighting and selecting countries working
Projecting text to UI is not yet working properly.
2024-05-28 13:38:40 +02:00

22 lines
375 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class CountrySelectorScript : MonoBehaviour
{
public Transform rayOrigin;
public float maxDistance = 5.0f;
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}