Sorry for another question. I hope you don't mind it.Can you show me the function that show the cursor? I tried to find it and use the said function when a switch is on.Thanks in advance.
You can activate it at any time with a(n e.g. “Script” Command) call to TSC_RStick_Mouse.startVirtualInput(). It’s fine to call this every frame.
TSC_RStick_Mouse.startVirtualInput()
Similarly, TSC_RStick_Mouse.endVirtualInput() will hide the virtual cursor on the next sprite update, and it’s fine to call that every frame too.
TSC_RStick_Mouse.endVirtualInput()
Thanks for your reply, appreciate it!