Skip to main content

On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(1 edit) (+1)

looks awesome, will give it a shot

edit: tried generating texure, it returned this:

Python: Traceback (most recent call last):

  File "C:\Users\itai5\AppData\Roaming\Blender Foundation\Blender\4.3\scripts\addons\PSX tools\psx_addon.py", line 187, in invoke

    return self.execute(context)

           ^^^^^^^^^^^^^^^^^^^^^

  File "C:\Users\itai5\AppData\Roaming\Blender Foundation\Blender\4.3\scripts\addons\PSX tools\psx_addon.py", line 213, in execute

    temp_image = Image.new("RGBA", (resolution, resolution))

                 ^^^^^

NameError: name 'Image' is not defined. Did you mean: 'image'?


also, is there some basic documentation? the readme doesnt say much and im kind of a blender noob atm

(1 edit)

It looks like your Blender can’t find the Pillow library, which is needed to generate textures. Here’s how to fix it:

  1. Install Pillow (only needs to be done once):

    • Open Blender.

    • Go to Edit → Preferences → System → Open Console (or open a terminal/command prompt).

    • Run:

      pip install Pillow 

      If that doesn’t work, try:

      python -m pip install Pillow 

      (Use Blender’s bundled Python if needed: "<path-to-blender>/4.3/python/bin/python.exe" -m pip install Pillow)

  2. Restart Blender after installation.

  3. Try generating the texture again — it should work without errors.

(1 edit) (+1)

Just a heads up if you are still having this error after the install and reboot, I found i had to install Pillow as administrator from the command prompt or else it gets installed into the incorrect library folder and Blender doesn't know where to look. 

Thanks for the tip!