mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-12 05:08:58 +08:00
- 新增输入绑定 DTO、设备上下文和 UI 语义桥接契约。 - 实现 Game 默认输入绑定存储、动作映射和 UI 分发桥接。 - 落地 Godot InputMap 适配、测试覆盖与配套文档。 - 更新 ai-plan 恢复点、worktree 映射与采用入口。
18 lines
574 B
C#
18 lines
574 B
C#
// Copyright (c) 2025-2026 GeWuYou
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
namespace GFramework.Game.Abstractions.Input;
|
|
|
|
/// <summary>
|
|
/// 定义面向 UI 语义动作的输入分发入口。
|
|
/// </summary>
|
|
public interface IUiInputDispatcher
|
|
{
|
|
/// <summary>
|
|
/// 尝试把逻辑动作分发到当前 UI 路由。
|
|
/// </summary>
|
|
/// <param name="actionName">逻辑动作名称。</param>
|
|
/// <returns>如果该动作被映射为 UI 动作并成功分发,则返回 <see langword="true" />。</returns>
|
|
bool TryDispatch(string actionName);
|
|
}
|