Jump to content

Hopps Animated Outline text


ukhoppa

Recommended Posts

Heres an animated outline text i made for paint. It kinda looks like it looses focus.

 

int red,green,blue;
void hoppsanimatedoutline(Graphics2D gfx, String text,int x, int y)
{
	
	if (red > 250){red = 10;}else{red = red + 3;}
	if (green > 250){green = 10;}else{green = green + 5;}
	if (blue > 250){blue = 10;}else{blue = blue + 1;}
	
		gfx.setColor(new Color(red, 0, 0));
		gfx.drawString(text, x - random(1,2), y);
		gfx.setColor(new Color(green, 0, 0));
		gfx.drawString(text, x + random(1,2), y);
		gfx.setColor(new Color(blue, red, 0));
		gfx.drawString(text, x , y - random(1,2));
		gfx.setColor(new Color(red, blue, 0));
		gfx.drawString(text, x , y + random(1,2));
		gfx.setColor(Color.WHITE);
		gfx.drawString(text, x , y);
}

 public void onPaint(Graphics2D gfx)
{
hoppsanimatedoutline(gfx,"Big Hopps MultiBot Animated text",10, 40);
};

 

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...