From 35b3b6ba6d1cf66654637e9b31f14db452df706e Mon Sep 17 00:00:00 2001 From: xshady <54737754+xxshady@users.noreply.github.com> Date: Tue, 2 Apr 2024 01:46:44 +0300 Subject: [PATCH] chore: use `alt.Vector3.zero` in example (#264) --- articles/virtualentity.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/articles/virtualentity.md b/articles/virtualentity.md index 8a9f1cb34..de11f2ba4 100644 --- a/articles/virtualentity.md +++ b/articles/virtualentity.md @@ -101,7 +101,7 @@ const startSpin = (startSpinTime) => { currentSpinTick.destroy(); currentSpinTick = null; - luckyWheelObject.rot = new alt.Vector3(0, 0, 0); + luckyWheelObject.rot = alt.Vector3.zero; return; }