|
|
@ -14,7 +14,7 @@ class Window < Gosu::Window |
|
|
|
@physobjs = physobjs |
|
|
|
@physobjs = physobjs |
|
|
|
@planets = planets |
|
|
|
@planets = planets |
|
|
|
|
|
|
|
|
|
|
|
@font = Gosu::Font.new(self, Gosu::default_font_name, 14) |
|
|
|
@font = Gosu::Font.new(self, Gosu::default_font_name, 18) |
|
|
|
@font2 = Gosu::Font.new(self, Gosu::default_font_name, 20) |
|
|
|
@font2 = Gosu::Font.new(self, Gosu::default_font_name, 20) |
|
|
|
|
|
|
|
|
|
|
|
@fonts = { |
|
|
|
@fonts = { |
|
|
@ -63,14 +63,12 @@ class Window < Gosu::Window |
|
|
|
# end |
|
|
|
# end |
|
|
|
|
|
|
|
|
|
|
|
def update |
|
|
|
def update |
|
|
|
if( !@freeze ) then |
|
|
|
@physobjs.each do |obj| |
|
|
|
@physobjs.each do |obj| |
|
|
|
obj.physics |
|
|
|
obj.physics |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
@planets.each do |planet| |
|
|
|
@planets.each do |planet| |
|
|
|
planet.orbit(@physobjs) |
|
|
|
planet.orbit(@physobjs) |
|
|
|
|
|
|
|
end |
|
|
|
|
|
|
|
end |
|
|
|
end |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|