Looking to add a kismet method which will temporarily disable any mouse inputs.
I have a Cursor that appears on screen that can interact with various custom KActor objects in game, so I can click on objects and have them do various things.
Current controls -
[A] and [D] control turning left and right.
[W] and [S] control walking forwards/backwards
MOUSE moves cursor on screen and can click on objects (left mouse pressed, left mouse released etc.)
I have various puzzles as well FLASH cutscenes where I need to disable the mouse inputs and re-enable them after certain kismet sequences.
Heres an example of what I want to do
Left Mouse click on object
object does stuff over a period of time
Player should not be able to do further mouse inputs until sequence is complete.
I was thinking of making a sequence action or something where I can put in bMousing = false; or something, then have nodes that disabled/enables it, but no luck so far I keep getting no event handler errors so i don't know if im on the right track or not.
and no turning on Cinematic Mode does NOT disable my mouse at all
I have a Cursor that appears on screen that can interact with various custom KActor objects in game, so I can click on objects and have them do various things.
Current controls -
[A] and [D] control turning left and right.
[W] and [S] control walking forwards/backwards
MOUSE moves cursor on screen and can click on objects (left mouse pressed, left mouse released etc.)
I have various puzzles as well FLASH cutscenes where I need to disable the mouse inputs and re-enable them after certain kismet sequences.
Heres an example of what I want to do
Left Mouse click on object
object does stuff over a period of time
Player should not be able to do further mouse inputs until sequence is complete.
I was thinking of making a sequence action or something where I can put in bMousing = false; or something, then have nodes that disabled/enables it, but no luck so far I keep getting no event handler errors so i don't know if im on the right track or not.
and no turning on Cinematic Mode does NOT disable my mouse at all
Comment