How can i do this? Any ideas? Thanks
2 Answers
2Try this:
if(Input.GetAxisRaw("Mouse ScrollWheel") > 0)
{
//wheel goes up
}
else if(Input.GetAxisRaw("Mouse ScrollWheel") < 0)
{
//wheel goes down
}
Looking at the script reference is a great value: Input.mouseScrollDelta
Hey @SkaredCreations ! Unfortunately i already looked and thats why im posting. Do you have any ideas?
– awplays49
Did it work?
– smirlianosI didn't try it, but after doing some research it should, thanks! @smirlianos
– awplays49Didn't work for me..
– drewjosh