right kilk problems
Posted: Sat May 05, 2007 9:46 pm
k i want if the right mouse button is pressed, a variable changes
but there glitches with this code
it doesnt seem to change the var when i want it to
but there glitches with this code
Code: Select all
if(self.rbutton_pressed) // right button press
{
if(zoomed = true)
{
zoomed = false;
return 0;
}
else
{
zoomed = true;
return 0;
}
}