#==============================================================================
# ■ Copyright text on title screen RGSS3 v1.0 MIT License; see git.io/tic
#------------------------------------------------------------------------------
# Shows copyright text on the title screen.
#==============================================================================
class Scene_Title
#--------------------------------------------------------------------------
# ● Constant
#--------------------------------------------------------------------------
Copyright = "©20XX Your Name." # Copyright text
#--------------------------------------------------------------------------
# ● Create foreground [alias]
#--------------------------------------------------------------------------
alias toruic_create_foreground create_foreground
def create_foreground
toruic_create_foreground
draw_copyright
end
#--------------------------------------------------------------------------
# ● [New] Copyright text
#--------------------------------------------------------------------------
def draw_copyright
@foreground_sprite.bitmap.font.size = 24
rect = Rect.new(0, Graphics.height - 32, Graphics.width, 24)
@foreground_sprite.bitmap.draw_text(rect, Copyright, 1)
end
end