def initialize
super 200, 135, false
self.caption = "Gosu Cycle Example"
@shape_x = 0
# Create and load an image to display
@background_image = Gosu::Image.new("media/earth.png") #this is causing the error
# Create and load a font for drawing text on the screen
@font = Gosu::Font.new(20)
@cycle = 0
puts "0. In initialize\n"
end
我不断收到背景图像初始化错误。它不断给出一个错误,它找不到指定的文件。该图像位于名为“媒体”的文件夹中,该文件夹位于程序文件夹中。
我对“require”有类似的问题,但用“require_relative”修复了它。对于这个问题,我找不到这样的解决方案。