Answers for "unity on mousewheel down"

C#
2

unity on mousewheel down

if (Input.GetAxis("Mouse ScrollWheel") > 0f) // forward
 {

 }
if (Input.GetAxis("Mouse ScrollWheel") < 0f) // backwards
{
               
}
Posted by: Guest on April-07-2020

C# Answers by Framework

Browse Popular Code Answers by Language