Shadow Text
Introdução
Primeiramente, queria me desculpar pois não achei o autor desse script, é um script um pouco inútil, porém deixa a escrita muito mais bonita.
Características
- Cria uma sombra em todo texto do jogo
Screenshots
Como usar
- Apenas ponha o script nos "Scripts adicionais"
Script
Código:
#===========================================================|
#=========================Shadow Text=======================|
#===========================================================|
class Bitmap
ShadowIndent = 1
ShadowColour = Color.new(0, 0, 230, 230)
unless @ja_ta_feito == 1
alias draw_text_plain draw_text
@ja_ta_feito = 1
end
def draw_text(arg1 = 0, arg2 = 0, arg3 = 0, arg4 = 0, arg5 = 0, arg6 = 0)
if arg1.is_a?(Rect)
x = arg1.x
y = arg1.y
width = arg1.width
height = arg1.height
string = arg2
align = arg3
else
x = arg1
y = arg2
width = arg3
height = arg4
string = arg5
align = arg6
end
colour = self.font.color.dup
self.font.color = ShadowColour
draw_text_plain(x + ShadowIndent, y + ShadowIndent, width, height, string, align)
self.font.color = colour
draw_text_plain(x, y, width, height, string, align)
end
end
Créditos e Agradecimentos- Não achei o autor