Im just wondering how I should go about setting my window up so that its size can be altered by use of the mouse, anyone know where there is sample code on this or have any?
Actually to be honest I am unsure how to get the mouse running in LWJGL in general, the API is causing me some issues at the moment :-/
Okay an update, at the moment I am trying to execute this code:
if (!Mouse.isButtonDown(Mouse.getButtonCount()-1));
{
System.out.print(“Whaaa!!”);
}
Which is printing output constantly
This code on the other hand:
if (Mouse.isButtonDown(Mouse.getButtonCount()-1));
{
System.out.print(“Whaaa!!”);
}
Does exactly the same thing!!! Has anyone any clues whyn this may be happening because I dont
:o
