Skip to content

Commit

Permalink
Fix OBJ loading.
Browse files Browse the repository at this point in the history
  • Loading branch information
SamuelTallet committed Jan 15, 2020
1 parent e8269aa commit 2288786
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion source/universal_importer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
# Universal Importer plugin namespace.
module UniversalImporter

VERSION = '1.1.1'.freeze
VERSION = '1.1.2'.freeze

# Load translation if it's available for current locale.
TRANSLATE = LanguageHandler.new('uir.strings')
Expand Down
2 changes: 2 additions & 0 deletions source/universal_importer/importer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,8 @@ def copy_to_prog_data_dir

texture_refs.each do |texture_path|

next unless File.exist?(File.join(@source_dir, texture_path))

Utils.mkdir_and_copy_file(
File.join(@source_dir, texture_path),
File.join(SESSION[:temp_dir], texture_path) # destination
Expand Down

0 comments on commit 2288786

Please sign in to comment.