Search Issue Tracker
Fixed in 5.1.0
Votes
0
Found in
3.0.0b6
Issue ID
371290
Regression
No
Left command key does not trigger events on Mac
1) What happened
the default key for "fire 3" in the input manager is left cmd, which corresponds to the windows key on windows. which is generally the "close this window and open the start menu" button
2) How can we reproduce it using the example you attached
Create a new project,
open the input manager
observe the madness in the "Fire3" drop down.
Would make much more sense to have this as left shift by default
You can use this script to test that it's impossible to use Fire 3 in Unity on Windows:
using UnityEngine;
using System.Collections;
public class NewBehaviourScript : MonoBehaviour
{
void Update()
{
if (Input.GetKeyDown("left cmd"))
print("fire3 key was pressed");
}
}
See also case 575280 that says Alt key doesn't trigger events on Mac
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Crash on JobQueue::HasJobGroupIDCompleted when closing the Editor while in Play mode on a specific project
- In "Preferences" section the “SpriteShape” menu item, the details page title “SpriteShape”, and “ControlPoint” entries are displayed as code strings rather than formatted UI strings
- Errors thrown constantly when Virtual Offset Debug is enabled and lighting was baked on AMD machine
- Persistent Memory Leak when reloading domain and using Distance-based Ghost Importance
- HDRP project doesn't render in standalone player when using High stripping
Add comment