Skip to content

Commit

Permalink
chore: fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
alvarosabu committed Mar 21, 2023
1 parent 9792c6e commit cc11bc2
Show file tree
Hide file tree
Showing 10 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
packages/**/dist
dist
**.spec.js
**.test.ts
**.test.js
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/demos/AkuAku.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script setup lang="ts">
import { useTweakPane, useGLTF } from '@tresjs/cientos'
import { inject, ref, watch, watchEffect } from 'vue'
import { inject, ref, watch } from 'vue'
useTweakPane()
Expand Down
2 changes: 1 addition & 1 deletion src/demos/AnimatedModel.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script setup lang="ts">
import { Color, sRGBEncoding } from 'three'
/* import { OrbitControls, useTweakPane, useGLTF, useAnimations } from '../../../cientos/src/' */
/* import { OrbitControls, useTweakPane, useGLTF, useAnimations } from '@tresjs/cientos/' */
import { OrbitControls, useTweakPane, useGLTF, useAnimations } from '@tresjs/cientos'
const bgColor = new Color('#F78B3D')
Expand Down
2 changes: 1 addition & 1 deletion src/demos/FBXModels.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import { ref, watch } from 'vue'
import { Color, sRGBEncoding } from 'three'
import { TresCanvas } from '../components/TresCanvas'
import { OrbitControls, useTweakPane, FBXModel, useFBX } from '../../../cientos/src/'
import { OrbitControls, useTweakPane, FBXModel, useFBX } from '@tresjs/cientos/'
const bgColor = new Color('#F78B3D')
useTweakPane()
Expand Down
2 changes: 1 addition & 1 deletion src/demos/TheEnvironment.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script setup lang="ts">
import { ref, shallowRef, watch } from 'vue'
import { Environment, Box, PamCameraMouse } from '../../../cientos/src'
import { Environment, Box, PamCameraMouse } from '@tresjs/cientos'
import { TresCanvas } from '../core/useRenderer/component'
/* import { OrbitControls, GLTFModel } from '@tresjs/cientos' */
Expand Down
2 changes: 1 addition & 1 deletion src/demos/TheExperience.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {
CustomToneMapping,
} from 'three'
import { reactive, ref } from 'vue'
import { OrbitControls, useTweakPane, TransformControls } from '../../../cientos/src/'
import { OrbitControls, useTweakPane, TransformControls } from '@tresjs/cientos/'
import { useCamera } from '../core'
import { TresCanvas } from '../core/useRenderer/component'
/* import { OrbitControls, GLTFModel } from '@tresjs/cientos' */
Expand Down
2 changes: 1 addition & 1 deletion src/demos/TheGizmos.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import { shallowRef, shallowReactive } from 'vue'
import { BasicShadowMap, sRGBEncoding, NoToneMapping } from 'three'
import { TresCanvas } from '../components/TresCanvas'
import { OrbitControls, useTweakPane, TransformControls } from '../../../cientos/src'
import { OrbitControls, useTweakPane } from '@tresjs/cientos'
const state = shallowReactive({
clearColor: '#201919',
Expand Down
2 changes: 1 addition & 1 deletion src/demos/TheGroups.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script setup lang="ts">
import { useRenderLoop } from '/@/composables/useRenderLoop'
import { ref } from 'vue'
import { OrbitControls } from '../../../cientos/src/'
import { OrbitControls } from '@tresjs/cientos/'
const { onLoop } = useRenderLoop()
Expand Down
2 changes: 1 addition & 1 deletion src/demos/TheSmallExperience.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script setup lang="ts">
import { OrbitControls } from '../../../cientos/src/'
import { OrbitControls } from '@tresjs/cientos/'
</script>
<template>
<div class="container">
Expand Down

0 comments on commit cc11bc2

Please sign in to comment.