Hi everyone
Does anyone know how I can refer to the left parenthesis using the string?
I use the following code:
if(Input.GetKeyDown("(")){
Debug.Log("LeftParenthesis.Pressed");
CodeInput.text = CodeInput.text + ")";
}
I don’t understand what I do wrong, if I click the parenthesis button it doesn’t do anything.
I looked it up on the internet and only found that I needed to use that string code.
Thanks for all the help in advance.