Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8498539
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T00:25:52+00:00 2026-06-11T00:25:52+00:00

I use the getDWheel method in my game like so: public void checkMouseWheel() {

  • 0

I use the getDWheel method in my game like so:

public void checkMouseWheel() {
if (highLight != null) {
    if (Mouse.getDWheel() < 0) {
        System.out.println("DOWN");
    }
    if (Mouse.getDWheel() > 0){
        System.out.println("UP");
   }
}

I call this method every time I check for input. When I use the scroll wheel the program only reaches the DOWN part when I scroll up, It doesn’t get into the if… No matter what I do only the scroll down works.

EDIT: When I scroll down ingame it prints “DOWN” but when I scroll up ingame nothing is printed.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T00:25:53+00:00Added an answer on June 11, 2026 at 12:25 am

    According to the javadoc, Mouse.getDWheel() “returns Movement of the wheel since last time getDWheel() was called”

    So when you call it the first time, the information is ‘cleared out’, and therefore will always return 0 for the second call. Try this small change to fix it:

    public void checkMouseWheel() {
    if (highLight != null) {
        int dWheel = Mouse.getDWheel();
        if (dWheel < 0) {
            System.out.println("DOWN");
        } else if (dWheel > 0){
            System.out.println("UP");
       }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

use javascript or other method ? have any recommendation?
In my Android application I use the follow function. But I found out that
Use Html element SELECT in aspx page like: <SELECT id=MySelection name=MySelection runat=server DataValueField=ID DataTextField=Name></SELECT>
Use trap to capture signals like this: i=-1;while((++i<33)); do trap echo $i >> log.txt
use ThreadPool.QueueUserWorkItem (WaitCallback, Object) to start a thread with my target method and data.
Use of function calls in where clause of stored procedure slows down performance in
Use Case: There is a web service posted as https://a.b.c.d/zz?wsdl What i would like
Use case : User fills out a form to add a product and register
Use Case Show a photo uploaded by the user in a square box with
use C#,want to upload excel file on google doc. bellow syntax use to upload

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.