Answers for "setup mouse scroll wheel unity"

C#
0

unity mouse wheel

float z = zoom.ReadValue<float>();
if (z > 0)
    Debug.Log("Scroll UP");
else if (z < 0)
    Debug.Log("Scroll DOWN");
Posted by: Guest on March-15-2022

C# Answers by Framework

Browse Popular Code Answers by Language