@@ -1,5 +1,5 @@
<script setup lang="ts">
-import { reactive, ref, watchEffect, provide } from 'vue'
+import { ref, watchEffect } from 'vue'
import { BasicShadowMap, sRGBEncoding, NoToneMapping } from 'three'
import { TresCanvas } from '/@/'
import TheSphere from './TheSphere.vue'
@@ -13,7 +13,7 @@ const state = reactive({
toneMapping: NoToneMapping,
})
-const akuAkuRef = ref(null)
+/* const akuAkuRef = ref(null) */
const context = ref()
watchEffect(() => {
@@ -26,8 +26,6 @@ const HTML_TAGS =
export const isHTMLTag = /*#__PURE__*/ makeMap(HTML_TAGS)
-export const isFunction = (val: unknown): val is Function => typeof val === 'function'
-
export function kebabToCamel(str: string) {
return str.replace(/-([a-z])/g, (_, c) => c.toUpperCase())
}