From 025e961f82ed9942f017a98b631637afdfa6e889 Mon Sep 17 00:00:00 2001 From: Deepansh Mathur Date: Fri, 24 Dec 2021 23:54:53 +0530 Subject: [PATCH] Updated a wrongly named variable --- src/guide/core/camera.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/core/camera.md b/src/guide/core/camera.md index af4faf29..e2ba8555 100644 --- a/src/guide/core/camera.md +++ b/src/guide/core/camera.md @@ -62,5 +62,5 @@ You should set a *ref* on the camera : You can then access ThreeJS camera in your component script : ```js -const scene = this.$ref.camera.camera; +const camera = this.$ref.camera.camera; ```