Im honestly torn how to fix this lil problem help?

sidescroller.wick (15.6 KB)
problem is when you “browse inventory” you also scroll the view of the scene no matter if the iv clip is above the button for scene scroll. this is live editor

Hey @Tsake,

You can add an if statement that checks if the inventory is open.

Then, when you see if you can “goleft” or “goright”, you could do something like:

if (cangoright && !inventoryOpen) {
  ///go right
}

which translates to if can go right AND NOT inventory open. Try that out!

1 Like

Many thanks work like a charm the hover over button thing triggers still but it doesnt matter, big thanks!

1 Like