Skip to content

Commit

Permalink
docs: fix build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
alvarosabu committed Jan 27, 2024
1 parent e937625 commit dc4e4c1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/directives/vAlwaysLookAt.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { useRenderLoop, useLogger } from '@tresjs/core'
import type { Object3D } from 'three'
import type { Ref } from 'vue'
import { extractBindingPosition } from '../utils'
import type { TresVector3 } from '../types'
import { useLogger, useRenderLoop } from '../composables'

const { logWarning } = useLogger()

Expand Down
2 changes: 1 addition & 1 deletion src/directives/vDistanceTo.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { useLogger } from '@tresjs/core'
import { ArrowHelper } from 'three'
import type { Ref } from 'vue'
import { extractBindingPosition } from '../utils'
import type { TresObject } from '../types'
import { useLogger } from '../composables'

const { logWarning } = useLogger()

Expand Down
3 changes: 2 additions & 1 deletion src/directives/vLightHelper.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { useLogger } from '@tresjs/core'

import type {
Light,
} from 'three'
Expand All @@ -9,6 +9,7 @@ import {
HemisphereLightHelper,
} from 'three'
import { RectAreaLightHelper } from 'three-stdlib'
import { useLogger } from '../composables'
import type { TresObject } from '../types'

const { logWarning } = useLogger()
Expand Down

0 comments on commit dc4e4c1

Please sign in to comment.