Files
MMORPG/Packages/com.unity.inputsystem/InputSystem/Devices/Commands/EnableIMECompositionCommand.cs
cooney ce83f21c93 UI 자동화를 위해 바인딩 기능 구현
- 유니티 에셋 인증 오류로 meta 재생성
2026-01-25 01:31:34 +09:00

45 lines
1.4 KiB
C#

using System.Runtime.InteropServices;
using UnityEngine.InputSystem.Utilities;
namespace UnityEngine.InputSystem.LowLevel
{
/// <summary>
/// Device Command that enables IME Composition within the application. Primarily handled by Keyboard devices.
/// </summary>
[StructLayout(LayoutKind.Explicit, Size = InputDeviceCommand.kBaseCommandSize + sizeof(byte))]
public unsafe struct EnableIMECompositionCommand : IInputDeviceCommandInfo
{
public static FourCC Type { get { return new FourCC('I', 'M', 'E', 'M'); } }
internal const int kSize = InputDeviceCommand.kBaseCommandSize + +sizeof(uint);
[FieldOffset(0)]
public InputDeviceCommand baseCommand;
/// <summary>
/// Set to true, and if true, Input Method Editors will be used while typing.
/// </summary>
public bool imeEnabled
{
get { return m_ImeEnabled != 0; }
}
[FieldOffset(InputDeviceCommand.kBaseCommandSize)]
byte m_ImeEnabled;
public FourCC typeStatic
{
get { return Type; }
}
public static EnableIMECompositionCommand Create(bool enabled)
{
return new EnableIMECompositionCommand
{
baseCommand = new InputDeviceCommand(Type, InputDeviceCommand.kBaseCommandSize + sizeof(byte)),
m_ImeEnabled = enabled ? byte.MaxValue : (byte)0
};
}
}
}