Entrar
Últimos assuntos
» player não consegue andarpor lovn7 Qui 21 Nov 2024, 13:33
» É possível fazer istó no game maker
por William Lima Qui 21 Nov 2024, 10:56
» Rio Rise - novo launcher do Gta San Andreas SAMP Brasil
por Lua Sáb 16 Nov 2024, 20:22
» (Resolvido) Cenario longo x Texture Pages
por josuedemoraes Sáb 16 Nov 2024, 15:31
» Kids' band
por Adilson Lucindo Santos Sex 15 Nov 2024, 12:23
» (RESOLVIDO) Engasgos-Troca de Sprites/animações
por josuedemoraes Ter 12 Nov 2024, 01:49
» Block Room - DEMO
por Joton Qua 06 Nov 2024, 22:58
» Game Infinito vertical (subindo)
por macmilam Sáb 26 Out 2024, 12:36
» Retorno da GMBR!!!
por Dancity Ter 22 Out 2024, 16:36
» Máquina de estados
por aminaro Qui 10 Out 2024, 13:33
» como faço pra um objeto colidir com o outro e diminuir a vida do player ?
por josuedemoraes Qui 03 Out 2024, 16:51
» RESOLVIDO: Colisão com objetos moveis
por josuedemoraes Qua 02 Out 2024, 20:28
» Crypt of the Blood Moon
por divin sphere Qua 11 Set 2024, 18:18
» como fazer um objeto seguir?
por divin sphere Dom 18 Ago 2024, 18:08
» Procuro de alguém para Modelar/Texturizar/Animar objetos 3D
por un00brn Dom 11 Ago 2024, 11:10
» Destruição de cenário (estilo DD Tank)
por CoronelZeg Sex 09 Ago 2024, 17:16
» RESOLVIDO-Como destruir uma instancia especifica de um objeto
por josuedemoraes Ter 23 Jul 2024, 00:40
» Automatizar a coleta de id
por GabrielXavier Seg 22 Jul 2024, 18:01
» Preciso de ajuda para concluir um pequeno projeto
por lmoura Qui 27 Jun 2024, 15:45
» ANGULO ACOMPANHAR O OBJETO
por Klinton Rodrigues Qui 27 Jun 2024, 08:34
» Musica reinicia quando sala reinicia
por GabrielXavier Ter 18 Jun 2024, 07:28
» como fazer uma copia de gd
por generico_cube Sex 14 Jun 2024, 15:48
» Square Adventure
por guilherme551 Ter 11 Jun 2024, 09:54
» como posso definir limite de uma variavel
por GabrielXavier Sex 07 Jun 2024, 14:14
» [Resolvido] Dúvida, colisão única de objeto
por vdm842 Sex 24 maio 2024, 09:50
draw rectangle + angulo
2 participantes
Página 1 de 1
draw rectangle + angulo
como que faz uma draw_rectangle com ângulo?
ja fiz isso:
lx2=lengthdir_x(40,ang)
ly2=lengthdir_y(40,ang)
draw_roundrect(x,y,x+lx2,y+ly2,false)
de cara vi que não ia dar certo.
ja tentei mudar o angulo do objeto e tbm não deu.
ja fiz isso:
lx2=lengthdir_x(40,ang)
ly2=lengthdir_y(40,ang)
draw_roundrect(x,y,x+lx2,y+ly2,false)
de cara vi que não ia dar certo.
ja tentei mudar o angulo do objeto e tbm não deu.
itallo- Games Ranking :
Notas recebidas : B - D
Data de inscrição : 26/08/2009
Reputação : 12
Número de Mensagens : 970
Prêmios :
x 0 x 0 x 0
x 1 x 0 x 0
x 0 x 0 x 0
Re: draw rectangle + angulo
Bom, seria algo como draw_roundrect_ext, mas não existe a função. A não ser que você a crie, tomando a background_ext ou a sprite_ext como base.
Que coincidência, achei num site chamado GMLScripts um script draw_roundrect_ext
http://www.gmlscripts.com
Que coincidência, achei num site chamado GMLScripts um script draw_roundrect_ext
- Código:
/*
** Usage:
** draw_roundrect_ext(x1,y1,x2,y2,outline,radius,precision)
**
** Arguments:
** x1,y1,x2,y2 coordinates of the corners of the rectangle
** outline set to TRUE for outline, FALSE for solid
** radius radius of the rounded corners
** precision quality of the rounded corners, positive integer
**
** Returns:
** nothing
**
** GMLscripts.com
*/
{
var x1,y1,x2,y2,out,rad,pre,i,j,x1r,x2r,y1r,y2r;
x1 = argument0;
y1 = argument1;
x2 = argument2;
y2 = argument3;
out = argument4;
rad = min(argument5,abs(x1-x2)/2,abs(y1-y2)/2);
pre = max(1,argument6);
i = 0;
j = 90 / pre;
x1r = x1 + rad;
x2r = x2 - rad;
y1r = y1 + rad;
y2r = y2 - rad;
if (out) {
draw_primitive_begin(pr_linestrip);
}else{
draw_primitive_begin(pr_trianglefan);
draw_vertex(mean(x1,x2),mean(y1,y2));
}
draw_vertex(x2,y2r);
draw_vertex(x2,y1r);
repeat (pre) {
i += j;
draw_vertex(x2r+lengthdir_x(rad,i),y1r+lengthdir_y(rad,i));
}
draw_vertex(x1r,y1);
repeat (pre) {
i += j;
draw_vertex(x1r+lengthdir_x(rad,i),y1r+lengthdir_y(rad,i));
}
draw_vertex(x1,y2r);
repeat (pre) {
i += j;
draw_vertex(x1r+lengthdir_x(rad,i),y2r+lengthdir_y(rad,i));
}
draw_vertex(x2r,y2);
repeat (pre) {
i += j;
draw_vertex(x2r+lengthdir_x(rad,i),y2r+lengthdir_y(rad,i));
}
draw_vertex(x2,y2r);
draw_primitive_end();
}
http://www.gmlscripts.com
Markituh- Games Ranking :
Data de inscrição : 11/10/2009
Reputação : 106
Número de Mensagens : 2184
Prêmios :
x 0 x 1 x 0
x 0 x 0 x 0
x 0 x 0 x 0
Tópicos semelhantes
» Draw rectangle
» Duvida Draw Rectangle
» draw rectangle + colisão com linha
» Draw Rectangle alpha (retangulo transparente)
» [Resolvido]Draw sprite com ângulo?
» Duvida Draw Rectangle
» draw rectangle + colisão com linha
» Draw Rectangle alpha (retangulo transparente)
» [Resolvido]Draw sprite com ângulo?
Página 1 de 1
Permissões neste sub-fórum
Não podes responder a tópicos