mirror of
https://github.com/cyberarm/i-mic-fps.git
synced 2025-12-15 23:52:35 +00:00
10 lines
262 B
Ruby
10 lines
262 B
Ruby
class IMICFPS
|
|
class Skydome < GameObject
|
|
def setup
|
|
bind_model(ModelLoader.new(type: :obj, file_path: "objects/skydome.obj", game_object: self))
|
|
p model.class
|
|
# raise "Skydome scale: #{self.scale}" unless self.scale == 1
|
|
end
|
|
end
|
|
end
|