From 07c0c67b88160b51e61c5c1d2b9b602daafa44a9 Mon Sep 17 00:00:00 2001 From: Normand Briere <nbriere@noware.ca> Date: Sat, 17 Aug 2019 04:38:10 -0400 Subject: [PATCH] Fix UV# --- ParticleNode.java | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/ParticleNode.java b/ParticleNode.java index 9977719..d7e2b28 100644 --- a/ParticleNode.java +++ b/ParticleNode.java @@ -356,7 +356,7 @@ if (support != null && link2master) geo = support; - if (live && Globals.isLIVE() && display.DrawMode() == display.SHADOW) // june 2013 + if (live && Globals.isLIVE() && (display.DrawMode() == display.SHADOW || !Globals.RENDERSHADOW)) // june 2013 { Step(); } -- Gitblit v1.6.2