Skip to content

Commit

Permalink
Update __init__.py
Browse files Browse the repository at this point in the history
- Centroid
- Fix MipMap adjust values
  • Loading branch information
VincentNLOBJ authored Aug 31, 2023
1 parent eb75d8e commit 470ae2c
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions naomiLib_importer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"author" : "zocker_160, VincentNL, TVIndustries",
"description" : "Addon for importing NaomiLib .bin/.raw files",
"blender" : (3, 4, 1),
"version" : (0, 14, 2),
"version" : (0, 14, 3),
"location" : "File > Import",
"warning" : "",
"category" : "Import",
Expand Down Expand Up @@ -649,8 +649,20 @@ class Naomi_TSP_Properties(bpy.types.PropertyGroup):
description= "Mipmap D Adjust Setting",
name = "Mipmap D Adjust",
items = [( '1', "0.25",""),
( '4', "1.00",""),
('16', "3.75",""),
('2', "0.50", ""),
('3', "0.75", ""),
('4', "1.00",""),
('5', "1.25", ""),
('6', "1.50", ""),
('7', "1.75", ""),
('8', "2.00", ""),
('9', "2.25", ""),
('10', "2.50", ""),
('11', "2.75", ""),
('12', "3.00", ""),
('13', "3.25", ""),
('14', "3.50", ""),
('15', "3.75", ""),
( '0', "Illegal",""),
],
)
Expand Down

0 comments on commit 470ae2c

Please sign in to comment.