PlayerInput' does not implement interface member 'InputActions.IGameplayActions.OnNewaction(InputAction.CallbackContext)
时间: 2024-02-22 12:57:20 浏览: 202
不会实现接口成员
这一个C#编译器错误,表示 'PlayerInput' 类没有实现 'InputActions.IGameplayActions' 接口中的 'OnNewaction' 方法。需要在 'PlayerInput' 类中添加 'OnNewaction' 方法并确保其符合 'InputActions.IGameplayActions' 接口的要求。
例如,可以在 'PlayerInput' 类中添加以下代码:
```
public void OnNewaction(InputAction.CallbackContext context)
{
// 实现 OnNewaction 方法的代码
}
```
注意,实现的代码应该根据具体的需求进行编写。
阅读全文