Broken mouse input, texture mapping issue persists.

This commit is contained in:
2018-03-19 22:08:20 -05:00
parent a46f3deff9
commit 89c84dbe39
11 changed files with 1768 additions and 7853 deletions

View File

@@ -18,6 +18,8 @@ end
BoundingBox = Struct.new(:min_x, :min_y, :min_z, :max_x, :max_y, :max_z)
$debug = true if ARGV.join.include?("--debug")
require_relative "lib/objects/light"
require_relative "lib/wavefront/parser"
require_relative "lib/wavefront/model"
@@ -25,6 +27,6 @@ require_relative "lib/wavefront/object"
require_relative "lib/wavefront/material"
require_relative "lib/window"
MODEL_METER_SCALE = 0.0009 # Objects exported from blender using the millimeter object scale will be close to 1 GL unit
MODEL_METER_SCALE = 0.001 # Objects exported from blender using the millimeter object scale will be close to 1 GL unit
IMICFPS::Window.new.show