我刚开始使用Ruby2D,在使用它的前15分钟中,它工作得非常好,但是由于某些原因,在15分钟后,加载时间猛增到100秒,并且发生了无数次。
我已经更新了Windows,评估了问题等,但是似乎没有任何效果。
奇怪的是,当Ruby2D v0.9.4发布时,我更新了Ruby2D,由于某种原因,延迟降低到40秒。
是否有解决此延迟的方法?
这是我正在使用的代码:
require 'ruby2d'
set title: "hey"
set diagnostics: true
Triangle.new(
x1: 320, y1: 50,
x2: 540, y2: 430,
x3: 100, y3: 430,
color: ['red', 'green', 'blue']
)
show
我正在使用Windows 10 Pro。