Search found 34 matches

by vortizee
Mon Feb 16, 2015 6:05 pm
Forum: General
Topic: What's everyone working on? (tigsource inspired)
Replies: 1791
Views: 1503251

Re: What's everyone working on? (tigsource inspired)

Classic 2D Air Traffic Control game. Concept related to Ed James’ unix original, the ATC port to Mac July ’87 by TC Gould and Marco Coïsson’s ATCX, with more atc controls, weather and terrain. Dunno how far I’ll get.

Image
by vortizee
Mon Feb 16, 2015 1:57 am
Forum: General
Topic: setStencil to a circle not clipping quad
Replies: 4
Views: 2648

Re: setStencil to a circle not clipping quad

When you use an image with setStencil, the square of the image is used, that means that the stencil becomes a square with the dimensions of the image. Try using love shapes, circle, rectangle and such, they do work http://img.acianetmedia.com/i/vmLDM.png Here’s a diagram of the problem I’m getting ...
by vortizee
Sun Feb 15, 2015 5:05 am
Forum: General
Topic: setStencil to a circle not clipping quad
Replies: 4
Views: 2648

Re: setStencil to a circle not clipping quad

But the stencil is already a shape: love.graphics.circle( ‘fill’, 322.5, 319.5, 611)
by vortizee
Sun Feb 15, 2015 3:11 am
Forum: General
Topic: setStencil to a circle not clipping quad
Replies: 4
Views: 2648

setStencil to a circle not clipping quad

I’m very new to this so pardon if I make a fundamental error. The stencil: within an overall rectangle, image based pieces draw over a grid image clipped by a circle. scope_stencil = function() love.graphics.setColor( 0, 0, 0, 255 ) love.graphics.circle( 'fill', 322.5, 319.5, 611) end The grid consi...