robot_2Generated
code_blocksInput

Description

The Editor.KeyCode.AE field represents the "Æ" character key on a keyboard. This key is commonly used in languages such as Danish, Norwegian, and Icelandic, where the "Æ" character is part of the alphabet.

Usage

Use the Editor.KeyCode.AE field to detect when the "Æ" key is pressed in an editor or application that supports keyboard input. This can be useful for handling input in applications that need to support multiple languages or specific character sets.

Example

// Example of using Editor.KeyCode.AE in a key press event handler
void OnKeyPress(Editor.KeyCode key)
{
    if (key == Editor.KeyCode.AE)
    {
        // Handle the "Æ" key press
        // For example, insert the "Æ" character into a text field
    }
}