It’s a cutscene and I want to ignore all input. I’d rather remove user controls completely while it plays and then re-add them after than check if it’s a cutscene for every single frame. How can I do this?
you can do this in many ways and they mostly depend on the way you implemented the game.
one way is to have some boolean or anything else that indicate that your in a cutscene and add to your input conditions
if(...&&!CutScenePlaying)
{
...
}
or you can remove/disable the scripts that are used for input in the beginning of a cutscene and then add/enable them at the end
it all depends on your implementation…