点光源跟随相机移动
<template>
<vue3dLoader
filePath="/vue-3d-loader-docs/models/collada/elf/elf.dae"
:lights="lights"
:cameraPosition="{ x: 0, y: 10, z: 10 }"
:pointLightFollowCamera="true"
:height="350"
/>
</template>
<script setup lang="ts">
import { ref } from "vue";
import { vue3dLoader } from "vue-3d-loader";
const lights = ref();
lights.value = [
{
type: "point", // or pointLight
color: "#ffffff",
position: { x: 0, y: 0, z: 400 },
intensity: 1
}
]
</script>