From 5e6a6f3319f0c4c687fe71952ac9ecc17792b83a Mon Sep 17 00:00:00 2001 From: Normand Briere <nbriere@noware.ca> Date: Mon, 10 Jun 2019 20:37:18 -0400 Subject: [PATCH] Fix normal for mesh --- CameraPane.java | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CameraPane.java b/CameraPane.java index 9794f67..337c107 100644 --- a/CameraPane.java +++ b/CameraPane.java @@ -10392,13 +10392,13 @@ ambientOcclusion = false; } - if (Globals.lighttouched && DrawMode() == DEFAULT && !lightMode) // && !FROZEN) + if (Globals.lighttouched && DrawMode() == DEFAULT) // && !lightMode) // && !FROZEN) { //if (RENDERSHADOW) // ? if (!IsFrozen()) { // dec 2012 - if (!ambientOcclusion && !(!flash && !lightMode && DrawMode() == DEFAULT && ANTIALIAS > 0)) + if (!ambientOcclusion && !(!flash && DrawMode() == DEFAULT && ANTIALIAS > 0)) { Globals.framecount++; shadowbuffer.display(); @@ -11552,7 +11552,7 @@ return; } - String string = obj.GetToolTip(); + String string = obj.toString(); //.GetToolTip(); GL gl = GetGL(); -- Gitblit v1.6.2