PS4远程播放拦截器
一个小型的.NET库,由支持,可拦截Windows PS4 Remote Play上的控件。 该库可用于自动执行任何PS4游戏。 请参阅。
另外,请检出存储库,以获取在此库上构建的即用型软件。
安装
使用NuGet(推荐)
Install-Package PS4RemotePlayInterceptor
从来源
添加对PS4RemotePlayInterceptor.dll的引用。
用法示例
该控制台应用程序将按住X按钮,同时向上移动左模拟摇杆,直到被按键打断。
您可以将EmulateController设置为true以在未插入DualShock 4控制器的情况下使用该库(必须拔出实际的控制器)。
using PS4RemotePlayInterceptor ;
class Program
{
static void Main ( string [] args )
{
// Setup callback to interceptor
Interceptor . Callback = new Intercep
1