While I was searching google video yesterday I found this awesome video: Animator vs Animation
And another one about how good microsoft's products can be: Dear Aunt, I mean momI made a new banner for myself, I will probably change it because I don't like it that much.The educational math game is coming along nicely, but it is taking forever to program in all the problems. I'll release a demo soon.I am finally seeing why so many people use scripts, they're very useful. Here is another one I made:_x=argument0
_y=argument1
_width=argument2
_title=argument3
_desc=argument4
_titlefont=argument5
_descfont=argument6
_outline=argument7
var sep;
sep=10
draw_set_alpha(0.1)
draw_rectangle(_x,_y,_x+_width,_y+ (string_height(_title)+sep) + (string_height(_desc)+sep),false)
draw_rectangle(_x,_y,_x+_width,_y+ (string_height(_title)+sep),false)
draw_set_alpha(1)
draw_set_valign(fa_center)
draw_set_halign(fa_middle)
draw_set_font(_titlefont)
draw_text(_x+_width/2,_y+ (string_height(_title)+sep)/2,string(_title))
draw_set_font(_descfont)
draw_text(_x+_width/2,_y+ (string_height(_title)+sep) + (string_height(_desc)+sep)/2,string(_desc))
draw_set_valign(fa_top)
draw_set_halign(fa_left)
if _outline=true
{
draw_rectangle(_x-1,_y-1,_x+_width,_y+(string_height(_title)+sep) + (string_height(_desc)+sep),1)
draw_line(_x,_y+(string_height(_title)+sep),_x+_width,_y+(string_height(_title)+sep))
}
I saw that animation 2 days ago. Funny stuff
lol