2023-01-29 06:10:09 +00:00
|
|
|
# Python imports
|
|
|
|
import subprocess
|
|
|
|
|
|
|
|
# Lib imports
|
|
|
|
|
|
|
|
# Application imports
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class MeshsIconMixin:
|
|
|
|
def generate_blender_thumbnail(self, full_path, hash_img_path):
|
|
|
|
try:
|
|
|
|
proc = subprocess.Popen([self.BLENDER_THUMBNLR, full_path, hash_img_path])
|
|
|
|
proc.wait()
|
|
|
|
except Exception as e:
|
2024-06-30 02:37:44 +00:00
|
|
|
logger.debug(repr(e))
|