Running into an issue where the Console Messages in UNITY are not showing up.
using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.Runtime.InteropServices;
using UnityEngine;
public class Hacker : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
ShowMainMenu(“Hello Nick”);
void ShowMainMenu(string greeting)
{
Terminal.ClearScreen();
Terminal.WriteLine(greeting);
Terminal.WriteLine("");
Terminal.WriteLine("Pick your level of Felony:");
Terminal.WriteLine("");
Terminal.WriteLine("Press 1 for The Public Library");
Terminal.WriteLine("Press 2 for The City Airport");
Terminal.WriteLine("Press 3 for The City Police Dept.");
Terminal.WriteLine("");
Terminal.WriteLine("Please enter your selection: ");
}
}
// Update is called once per frame
void Update()
{
void OnUserInput(string input)
{
print(input == "1");
}
}
}
I have tried recreating the project, I have hit enter, I have tried Debug.Log(input == “1”);
Nothing is writing to the unity console. Any help would be appreciated