From 895f1595f5677ff158f744c13ea89f497d32fe47 Mon Sep 17 00:00:00 2001 From: hkc Date: Thu, 12 Oct 2023 21:48:08 +0300 Subject: [PATCH] setScale() -> setSize() --- augment/modules/wh.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/augment/modules/wh.lua b/augment/modules/wh.lua index 6933477..2da4b33 100644 --- a/augment/modules/wh.lua +++ b/augment/modules/wh.lua @@ -14,7 +14,7 @@ return function() if cache[id] == nil then cache[id] = {} cache[id].cube = canvas3d.addBox(0, 0, 0) - cache[id].cube.setScale(0.5, 0.5, 0.5) + cache[id].cube.setSize(0.5, 0.5, 0.5) cache[id].frame = canvas3d.addFrame({ 0, 0, 0 }) cache[id].text = cache[id].frame.addText({ 0, 0 }, "") end