Did some reorganizing

This commit is contained in:
2018-03-20 15:11:00 -05:00
parent a3c92f9de3
commit 46f533f83e
9 changed files with 157 additions and 53 deletions

View File

@@ -6,9 +6,9 @@ class IMICFPS
attr_reader :texture
def initialize(name)
@name = name
@ambient = Wavefront::Model::Color.new(1, 1, 1, 1)
@diffuse = Wavefront::Model::Color.new(1, 1, 1, 1)
@specular= Wavefront::Model::Color.new(1, 1, 1, 1)
@ambient = Color.new(1, 1, 1, 1)
@diffuse = Color.new(1, 1, 1, 1)
@specular= Color.new(1, 1, 1, 1)
@texture = nil
@texture_id = nil
end