Project1
标题:
请问这串脚本里的井号是什么意思?
[打印本页]
作者:
kklt
时间:
2016-2-1 13:55
标题:
请问这串脚本里的井号是什么意思?
self.contents.draw_text(101, 0, self.contents.text_size("Lv.
#
{$game_party.members[0].level}").width, self.contents.text_size("Lv.
#
{$game_party.members[0].level}").height, "Lv.
#
{$game_party.members[0].level}")
作者:
喵呜喵5
时间:
2016-2-1 14:24
a = 'hello'
b = "#{a} world"
p b # => hello world
复制代码
作者:
kklt
时间:
2016-2-1 14:28
喵呜喵5 发表于 2016-2-1 14:24
多谢你的帮助。
对了还有,在rm脚本中,super是干什么用的?
作者:
喵呜喵5
时间:
2016-2-1 14:59
kklt 发表于 2016-2-1 14:28
多谢你的帮助。
对了还有,在rm脚本中,super是干什么用的?
class A
def hello
p 'hello'
end
end
class B < A
def hello
super
p 'world'
end
end
b = B.new
b.hello #=>"hello world"
复制代码
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1