Skip to content

Commit

Permalink
update to 5.7.6
Browse files Browse the repository at this point in the history
  • Loading branch information
cgcostume committed Jul 7, 2019
1 parent b8d2ee0 commit c1297f4
Show file tree
Hide file tree
Showing 21 changed files with 7 additions and 6 deletions.
Binary file modified erangel/pubg_erangel_height_l16_lod0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified erangel/pubg_erangel_height_l16_preview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified erangel/pubg_erangel_normal_rg8_lod0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified erangel/pubg_erangel_normal_rg8_preview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified miramar/pubg_miramar_height_l16_lod0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified miramar/pubg_miramar_height_l16_preview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified miramar/pubg_miramar_normal_rg8_lod0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified miramar/pubg_miramar_normal_rg8_preview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 7 additions & 6 deletions pubg-tga-slice.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,18 @@
# 'miramar' : 'TslGame-WindowsNoEditor_desert_heightmap.pak' }

tslHeightmapPathsByMap = {
'erangel' : r'Maps\Erangel\Art\Heightmap',
'miramar' : r'Maps\Desert\Art\Heightmap',
'sanhok' : r'Maps\Savage\Art\Heightmap',
'vikendi' : r'Maps\DihorOtok\Art\HeightMap', }
'erangel' : r'Maps//Erangel//Art//Heightmap',
'miramar' : r'Maps//Desert//Art//Heightmap',
'range' : r'Maps//Range//Art//Heightmap',
'sanhok' : r'Maps//Savage//Art//Heightmap',
'vikendi' : r'Maps//DihorOtok//Art//HeightMap', }


mapIdentifier = args.map.lower()
if mapIdentifier not in {'erangel', 'miramar', 'sanhok', 'vikendi' }:
if mapIdentifier not in {'erangel', 'miramar', 'range', 'sanhok', 'vikendi' }:
sys.exit('unknown map identifier \'' + mapIdentifier + '\'')

smallMap = mapIdentifier == 'sanhok'
smallMap = mapIdentifier == 'sanhok' or mapIdentifier == 'range'
mediumMap = mapIdentifier == 'vikendi'
numTiles = 64 if smallMap else 176 if mediumMap else 256

Expand Down
Loading

0 comments on commit c1297f4

Please sign in to comment.