Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Scripting a quarter circle movement into a macro #121

Open
RJDoran93 opened this issue Aug 12, 2021 · 1 comment
Open

Scripting a quarter circle movement into a macro #121

RJDoran93 opened this issue Aug 12, 2021 · 1 comment

Comments

@RJDoran93
Copy link

Does anyone know how to properly add a quarter circle forward into the script for a macro? Thanks in advance for any help you can offer.

@ps5macro
Copy link

ps5macro commented Jan 1, 2022

Is this for the dpad? I'm guessing you're building a macro where you're writing out the dualshock states in an order? Assuming both of those are true you'd do something like:

Press(new DualShockState() { DPad_Down = true }, 900);
Press(new DualShockState() { DPad_Down = true, Dpad_Right = true }, 900);
Press(new DualShockState() { DPad_Right = true }, 900);

You may need some sleeps in between and may need to adjust the button press durations.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants