Version: 5.4
public static bool actionKey ;

説明

プラットフォームに依存する " Action " する修飾子キーが押されているか。(Read Only)

キーは Mac OSX の Command 、Windows の Control です。


Action Key usage, key not pressed/key pressed.

	// Shows a password field with some "hidden" text.
	// When the user presses the action key the password field becomes a text field.
	
	class EditorGUIActionKey extends EditorWindow {
	
		var text : String = "This is some text";
	
		@MenuItem("Examples/Show Hide password")
		static function Init() {
			var window = GetWindow(EditorGUIActionKey);
			window.position = Rect(0, 0, 250, 60);
			window.Show();
		}
		function OnGUI() {
			// Show the contents
			if(EditorGUI.actionKey) {
				text = EditorGUI.TextField(Rect(0, 5, 245, 20), "Shown  Text:", text);
			} else {
			// show the pasword field
				text = EditorGUI.PasswordField(Rect(0, 5, 245, 20), "Hidden Text:", text);	
			}
			if(GUI.Button(Rect(0,30, 250, 20),"Close"))
				this.Close();
		}
		function OnInspectorUpdate() {
			Repaint();
		}
	}
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961