PrismPipeline / Prism

Prism Pipeline
https://prism-pipeline.com
GNU Lesser General Public License v3.0
340 stars 76 forks source link

Found a workaround for Blender 3.2 support? #36

Open sus-unn opened 2 years ago

sus-unn commented 2 years ago

Blender 3.2.2 Prism 1.3.0.83

It is unable to open Prism within blender 3.2 (As I remember, it was also impossible in 3.1, but I can't confirm) I looked into error message in blender console, turns out Prism only supports blender with Python version 3.7 or 3.9. So I have found a way around:

(This is not a full fix, I haven't looked deep into this temporary solution.)

In blender installation folder, look for /blender/(version)/scripts/startup/PrismInit.py (is Prism/Prism/Plugins/Apps/Blender/Integration/PrismInit.py in source code)

https://github.com/RichardFrangenberg/Prism/blob/development/Prism/Plugins/Apps/Blender/Integration/PrismInit.py

In line 44, change if sys.version_info[1] not in [7, 9]: to if sys.version_info[1] not in [7, 9, 10]:

(Re)start blender, Prism should work fine.

Again, this is temporary fix.

jonbragado commented 1 year ago

Hi,

I changed that in the prism scripts as said before but it doesnt seem to work on Blender 3.4.1.

Any help would be appreciated.

Thanks,

melMass commented 1 year ago

@jonbragado What is the status of Prism? I'm ready to look into this specific issue first and why not others if it's still "active" Thanks

RichardFrangenberg commented 1 year ago

Currently all the development effort goes into Prism 2, which is currently in private beta and supports the latest Blender versions. It will be uploaded to Github in a few months. From my side there are no plans to update Prism 1, but community contributions for fixes like this are welcome.