What are the differences between KeyUp and KeyDown?
And what is the difference between Mouse1Click and And Mouse1ClickHold Vise versa?
KeyUp
and KeyDown
(as you probably know) have to do with keyboard keys.
The difference between them is that if I were to press k down then that triggers the KeyDown
Event
and then when I unclick the key (when i bring my finger back up) It will trigger the event: KeyUp
To answer your Mouse1Click
question. There are no events called Mouse1Click
or Mouse1ClickHold
, I think you mean Button1Down
, and there isn't any event for holding that down.
KeyDown: lets say you want the keyboard button " B" to make something, when you will press it, it will do the action KeyUp: its when you release the button
Mouse1Click: when you click with the left mouse button Mouse1Hold: i never used it but its probably if you hold the left mouse button..