From 8e83c0d0d05bd8cf4b2c93b5d197dc092ae6c835 Mon Sep 17 00:00:00 2001 From: Onek8 Date: Fri, 27 Jun 2025 17:49:35 +0000 Subject: [PATCH] moisesjpelaez - Fix linked particle's render object vertex shader export --- leenkx/blender/lnx/exporter.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/leenkx/blender/lnx/exporter.py b/leenkx/blender/lnx/exporter.py index 2351fb5..de444d2 100644 --- a/leenkx/blender/lnx/exporter.py +++ b/leenkx/blender/lnx/exporter.py @@ -636,7 +636,10 @@ class LeenkxExporter: continue for slot in bobject.material_slots: - if slot.material is None or slot.material.library is not None: + if slot.material is None: + continue + if slot.material.library is not None: + slot.material.lnx_particle_flag = True continue if slot.material.name.endswith(variant_suffix): continue