komefai / PS4Macro

Automation utility for PS4 Remote Play written in C#
http://blog.komefai.com
MIT License
375 stars 89 forks source link

Scripting: Can I overlap DuslShockStates executions? #107

Open jgone99 opened 4 years ago

jgone99 commented 4 years ago

Is there a way to make these function to execute simultaneously? I need to make a character run. Is there another way to do this?

Press(new DualShockState() { LY = 0x0 }, 4000); Press(new DualShockState() { Cross = true }, 4000)

ps5macro commented 2 years ago

Hey there, I know you asked this a while ago. I'm not Komefai sadly, but trying to help those who find this project. The following will do what you're looking for:

Press(new DualShockState() { LY= 0x0, Cross = true }, 4000)