From f6d2d0bcc4039fc0f0a7b8e1e8c3605ea0514286 Mon Sep 17 00:00:00 2001 From: "ARRAKIS\\IAAdmin" Date: Wed, 20 Dec 2023 20:05:36 +0100 Subject: [PATCH] fix spout bgl reference --- __init__.py | 7 ++++--- fbs/spout/SpoutServer.py | 2 ++ 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/__init__.py b/__init__.py index eb7a3df..ecd5d91 100644 --- a/__init__.py +++ b/__init__.py @@ -17,10 +17,11 @@ "description" : "Sharing Textures via Spout or Syphon from Blender", "blender" : (3, 0, 0), "version" : (4, 0, 0), + "doc_url" : "https://github.com/maybites/blender-texture-sharing", "location" : "Properties > Camera > Camera data", "category" : "Render", - "wiki_url" : "https://github.com/maybites/blender.script.spout", - "tracker_url" : "https://github.com/maybites/blender.script.spout/issues", + "wiki_url" : "https://github.com/maybites/blender-texture-sharing", + "tracker_url" : "https://github.com/maybites/blender-texture-sharing/issues", "support" : "COMMUNITY" } @@ -36,7 +37,7 @@ def register(): # then add the required packages if platform.system() == "Windows": - pip_importer.add_package(pip_importer.Package("SpoutGL", version="==0.0.4", custom_module="spoutgl")) + pip_importer.add_package(pip_importer.Package("SpoutGL", version="==0.0.4", custom_module="SpoutGL")) if platform.system() == "Darwin": pip_importer.add_package(pip_importer.Package("syphon-python", version="==0.1.0", custom_module="syphon")) diff --git a/fbs/spout/SpoutServer.py b/fbs/spout/SpoutServer.py index 2561712..24c8a97 100644 --- a/fbs/spout/SpoutServer.py +++ b/fbs/spout/SpoutServer.py @@ -4,6 +4,8 @@ import SpoutGL +import bgl + import gpu from gpu_extras.presets import draw_texture_2d