Round 1 of comment response

This commit is contained in:
Buhallin 2022-12-28 10:09:24 -08:00
parent 8ab7f13ce3
commit 98e73a11be
No known key found for this signature in database
GPG Key ID: DB3C362823852294

View File

@ -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