From 98e73a11bec20389b2da662a32f3dddb5ed01fa4 Mon Sep 17 00:00:00 2001 From: Buhallin Date: Wed, 28 Dec 2022 10:09:24 -0800 Subject: [PATCH] Round 1 of comment response --- src/playermat/Playmat.ttslua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/playermat/Playmat.ttslua b/src/playermat/Playmat.ttslua index 64da5963..d98e3a31 100644 --- a/src/playermat/Playmat.ttslua +++ b/src/playermat/Playmat.ttslua @@ -1,7 +1,7 @@ local tokenManager = require("core/token/TokenManager") -- set true to enable debug logging and show Physics.cast() -local DEBUG = true +local DEBUG = false -- we use this to turn off collision handling until onLoad() is complete local COLLISION_ENABLED = false @@ -663,7 +663,7 @@ function clickableClues(showCounter) local pos = self.positionToWorld({x = -1.12, y = 0.05, z = 0.7}) for i = 1, clueCount do pos.y = pos.y + 0.045 * i - TokenManager.spawnToken(pos, "clue", self.getRotation()) + TokenManager.spawnToken(pos, "clue", PLAY_ZONE_ROTATION) end end end