Rubygame -- need help with zoom

  • Thread starter Bryan Richardson
  • Start date
B

Bryan Richardson

Hello all,

I'm trying to get a Rubygame example to zoom, and can't seem to do so.
Right now, I'm simply drawing a single pixel at the center of the
screen, then trying to zoom when I press the space bar. I have my event
queue set up right, because if I tell it to print something when the
space bar is pressed it works. Here's how I'm trying to zoom:

@screen.zoom_to(@screen.w / 2, @screen.h / 2) if event.key ==
Rubygame::K_SPACE
@screen.update

Anyone know why this isn't working? The pixel at the center of the
screen stays the same size...
 
D

d c

is a 1pixel x 1pixel object fixed at that size, ignoring scale?
have you tried drawing a box or translating it?

/dc
 
B

Bryan Richardson

Hi Again David,

So I drew a polygon using the code below, but the screen still doesn't
zoom...

@screen.draw_polygon([ [10,10], [200,10], [200,200], [10,200], [10,10]
], [255,11,147])


Am I still missing something?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
474,202
Messages
2,571,057
Members
47,661
Latest member
FloridaHan

Latest Threads

Top