From 470ae2c7ea48104aae5b6e7b7d0b7c7ae1f7e480 Mon Sep 17 00:00:00 2001 From: VincentNL <71412899+VincentNLOBJ@users.noreply.github.com> Date: Thu, 31 Aug 2023 12:16:32 +0200 Subject: [PATCH] Update __init__.py - Centroid - Fix MipMap adjust values --- naomiLib_importer/__init__.py | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/naomiLib_importer/__init__.py b/naomiLib_importer/__init__.py index ae9587a..0b6d2fd 100644 --- a/naomiLib_importer/__init__.py +++ b/naomiLib_importer/__init__.py @@ -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", @@ -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",""), ], )