❤ 0 Auteur : 天青
Logiciel : RPG Maker VX Ace
Nombre de scripts : 1
Source : http://save-point.org/showthread.php?tid=3844
Fonctionnalités
Permet d’utiliser \v[x] et \n[x] dans les noms de map qui s'affiche en pop up (donc afficher un nom de personnage ou le contenue d'une variable).
Installation
A placer au-dessus de Main.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| #==============================================================================
# ■ Map Name Processing
#------------------------------------------------------------------------------
# Edit by 天青
#------------------------------------------------------------------------------
# This is a minor edit Window_MapName's refresh method
# for it to use dialog text formatting, such as \n[x]
# and \v[x]
#==============================================================================
class Window_MapName < Window_Base
#--------------------------------------------------------------------------
# ● リフレッシュ
#--------------------------------------------------------------------------
def refresh
contents.clear
unless $game_map.display_name.empty?
draw_background(contents.rect)
tst_maptext = convert_escape_characters($game_map.display_name)
draw_text(contents.rect, tst_maptext, 1)
end
end
end |
|