Copien esto en el draw de un objeto con depth -99999 o similar
Es lo que pude hacer, si quieren lo modifican, si les parece muy brusco el cambio
Saludos
Suerte
Código [Seleccionar]
if current_hour<17 and current_hour>7
{
color=make_color_hsv(170,230,150)
if current_hour=8 {color=make_color_hsv(170,230,40)}
if current_hour=9 {color=make_color_hsv(170,230,80)}
if current_hour=10 {color=make_color_hsv(170,230,120)}
if current_hour=11 {color=make_color_hsv(170,230,140)}
if current_hour=13 {color=make_color_hsv(170,230,140)}
if current_hour=14 {color=make_color_hsv(170,230,120)}
if current_hour=15 {color=make_color_hsv(170,230,80)}
if current_hour=16 {color=make_color_hsv(170,230,40)}
draw_set_blend_mode(bm_subtract)
draw_set_color(color)
draw_rectangle(0,0,room_width,room_height,0)
draw_set_blend_mode(bm_normal)
}
else
{
color=make_color_hsv(30,200,200)
if current_hour=17 {color=make_color_hsv(30,200,0)}
if current_hour=18 {color=make_color_hsv(30,200,40)}
if current_hour=19 {color=make_color_hsv(30,200,80)}
if current_hour=20 {color=make_color_hsv(30,200,120)}
if current_hour=21 {color=make_color_hsv(30,200,160)}
if current_hour=3 {color=make_color_hsv(30,200,160)}
if current_hour=4 {color=make_color_hsv(30,200,120)}
if current_hour=5 {color=make_color_hsv(30,200,80)}
if current_hour=6 {color=make_color_hsv(30,200,40)}
if current_hour=7 {color=make_color_hsv(30,200,0)}
draw_set_blend_mode(bm_subtract)
draw_set_color(color)
draw_rectangle(0,0,room_width,room_height,0)
draw_set_blend_mode(bm_normal)
}
Es lo que pude hacer, si quieren lo modifican, si les parece muy brusco el cambio
Saludos
Suerte