Currently, my script is something like this:
public Keycode fire = KeyCode.Mouse0
void Update() {
if (Input.GetKeyDown(fire)) {
//Do stuff
}
}
Will the KeyCodes called in the script appear in the launcher, or do I have to do something special to make that happen?