Domino Marama's picture
First released: 28 September, 2009 - 11:02
Download: primstar_0.9.8.zip
Size: 348.91 KB
md5_file hash: 33b6d27e68d66b65a6d300ffed25e500
Last updated: 28 September, 2009 - 11:02

Fix for http://dominodesigns.info/node/57 - Test GUI LOD Info is now updated when values are typed in (when enter is pressed).

Note: This is a development snapshot for testing purposes. Please don't report bugs on Add - Mesh - Sculpt Mesh as it will be replaced by the Add - Mesh - GUI Test script when it's stable on Windows.

Comments

install.py issues

Windows Vista Home Premium 32-bit

Python 2.6.2

Blender 2.49a

The python installer wasn't working for me, printing this to the console: 

Compiled with Python version 2.6.2.Checking for installed Python... got it!Traceback (most recent call last): File "install.py", line 68, in <module> os.remove(f)WindowsError: [Error 2] The system cannot find the file specified: 'uvcalc_eac.py'Error executing Python script from command-line:install.py (at line 68). 

 

To get it working, I edited install.py in two ways:

1) Manually entered my script directory (line 52) in case it was not being read properly from Blender's variables.

52:  script_path = "C:\Users\Fox\AppData\Roaming\Blender Foundation\Blender\.blender\scripts"

2) I don't know if this is a general bug in install.py, but line 68 instructs the OS to delete file f, but as far as I can tell, that's only the file name.  I changed it to remove t, the full path, and it installed now fine.

67:  if os.path.exists(t):68:     os.remove(t) 

Domino Marama's picture

Fixed in next release

os.remove(f) was a bug. Thanks for reporting it. The script directory shouldn't need altering, it's finding "t" or it wouldn't show the error when it tries to remove the filename only.

I've corrected it now, and the fix will be in the next snapshot.