无法在 Ruby 中使用 Gosu 打印文本
Cannot print a text with Gosu in Ruby
我坐在这里,我认为这是一个非常简单的错误,我就是想不通。我正在尝试学习如何使用 Gosu gem 和 Ruby 制作游戏,但是已经成功了减速带这是我的代码。
require "gosu"
class Hello < Gosu::Window
def initialize width = 800, height = 600, fullscreen = false
super
self.caption = "Ruby Practise"
@image = Gosu::Image.from_text self. "My text to print".
Gosu.default_font_name.
100
end
def button_down id
close if id == Gosu::KbEscape
end
def update
end
def draw
@image.draw 0, 0, 0
end
end
Hello.new.show
有问题,但我不知道是什么。我至少花了 1 个小时。它在字符串上抱怨,这是终端的输出。
hello.rb:8: syntax error, unexpected tSTRING_BEG
@image = Gosu::Image.from_text self. "My text to print".
^
hello.rb:10: syntax error, unexpected tINTEGER
我不知道我做错了什么,有人知道吗?这可能真的很简单..
使用逗号分隔函数参数,而不是点:
@image = Gosu::Image.from_text self, "My text to print",
Gosu.default_font_name,
100
我坐在这里,我认为这是一个非常简单的错误,我就是想不通。我正在尝试学习如何使用 Gosu gem 和 Ruby 制作游戏,但是已经成功了减速带这是我的代码。
require "gosu"
class Hello < Gosu::Window
def initialize width = 800, height = 600, fullscreen = false
super
self.caption = "Ruby Practise"
@image = Gosu::Image.from_text self. "My text to print".
Gosu.default_font_name.
100
end
def button_down id
close if id == Gosu::KbEscape
end
def update
end
def draw
@image.draw 0, 0, 0
end
end
Hello.new.show
有问题,但我不知道是什么。我至少花了 1 个小时。它在字符串上抱怨,这是终端的输出。
hello.rb:8: syntax error, unexpected tSTRING_BEG
@image = Gosu::Image.from_text self. "My text to print".
^
hello.rb:10: syntax error, unexpected tINTEGER
我不知道我做错了什么,有人知道吗?这可能真的很简单..
使用逗号分隔函数参数,而不是点:
@image = Gosu::Image.from_text self, "My text to print",
Gosu.default_font_name,
100