GLTF动画

在本课中,我们将创建与 FBX 动画课程中创建的项目等效的 GLTF模型

我们使用Blender将主要的FBX模型及其相关的动画文件转换为GLB文件。

资源

如果您不想使用Blender将文件转换为视频中所示的文件,则可以直接下载它们并保存到fbxglb./dist/client/models

可使用GLTF编辑器预览、编辑这几个模型。

启动脚本

./src/client/client.ts

import * as THREE from 'three'

import { OrbitControls } from 'three/examples/jsm/controls/OrbitControls'

import { GLTFLoader } from 'three/examples/jsm/loaders/GLTFLoader'

import Stats from 'three/examples/jsm/libs/stats.module'

import { GUI } from 'dat.gui'

const scene = new THREE.Scene()

scene.add(new THREE.AxesHelper(5))

const light1 = new THREE.PointLight(0xffffff, 100)

light1.position.set(2.5, 2.5, 2.5)

scene.add(light1)

const light2 = new THREE.PointLight(0xffffff, 100)

light2.position.set(-2.5, 2.5, 2.5)

scene.add(light2)

const camera = new THREE.PerspectiveCamera(

75,

window.innerWidth / window.innerHeight,

0.1,

1000

)

camera.position.set(0.8, 1.4, 1.0)

const renderer = new THREE.WebGLRenderer()

renderer.setSize(window.innerWidth, window.innerHeight)

document.body.appendChild(renderer.domElement)

const controls = new OrbitControls(camera, renderer.domElement)

controls.enableDamping = true

controls.target.set(0, 1, 0)

let mixer: THREE.AnimationMixer

let modelReady = false

const animationActions: THREE.AnimationAction[] = []

let activeAction: THREE.AnimationAction

let lastAction: THREE.AnimationAction

const gltfLoader = new GLTFLoader()

gltfLoader.load(

'models/vanguard.glb',

(gltf) => {

// gltf.scene.scale.set(.01, .01, .01)

复制代码
    mixer = new THREE.AnimationMixer(gltf.scene)

    const animationAction = mixer.clipAction((gltf as any).animations[0])
    animationActions.push(animationAction)
    animationsFolder.add(animations, 'default')
    activeAction = animationActions[0]

    scene.add(gltf.scene)

    // //add an animation from another file
    // gltfLoader.load(
    //     'models/[email protected]',
    //     (gltf) => {
    //         console.log('loaded samba')
    //         const animationAction = mixer.clipAction(
    //             (gltf as any).animations[0]
    //         )
    //         animationActions.push(animationAction)
    //         animationsFolder.add(animations, 'samba')

    //         //add an animation from another file
    //         gltfLoader.load(
    //             'models/[email protected]',
    //             (gltf) => {
    //                 console.log('loaded bellydance')
    //                 const animationAction = mixer.clipAction(
    //                     (gltf as any).animations[0]
    //                 )
    //                 animationActions.push(animationAction)
    //                 animationsFolder.add(animations, 'bellydance')

    //                 //add an animation from another file
    //                 gltfLoader.load(
    //                     'models/[email protected]',
    //                     (gltf) => {
    //                         console.log('loaded goofyrunning');
    //                         (gltf as any).animations[0].tracks.shift() //delete the specific track that moves the object forward while running
    //                         const animationAction = mixer.clipAction(
    //                             (gltf as any).animations[0]
    //                         )
    //                         animationActions.push(animationAction)
    //                         animationsFolder.add(animations, 'goofyrunning')

    //                         modelReady = true
    //                     },
    //                     (xhr) => {
    //                         console.log(
    //                             (xhr.loaded / xhr.total) * 100 + '% loaded'
    //                         )
    //                     },
    //                     (error) => {
    //                         console.log(error)
    //                     }
    //                 )
    //             },
    //             (xhr) => {
    //                 console.log((xhr.loaded / xhr.total) * 100 + '% loaded')
    //             },
    //             (error) => {
    //                 console.log(error)
    //             }
    //         )
    //     },
    //     (xhr) => {
    //         console.log((xhr.loaded / xhr.total) * 100 + '% loaded')
    //     },
    //     (error) => {
    //         console.log(error)
    //     }
    // )
},
(xhr) => {
    console.log((xhr.loaded / xhr.total) * 100 + '% loaded')
},
(error) => {
    console.log(error)
}

)

window.addEventListener('resize', onWindowResize, false)

function onWindowResize() {

camera.aspect = window.innerWidth / window.innerHeight

camera.updateProjectionMatrix()

renderer.setSize(window.innerWidth, window.innerHeight)

render()

}

const stats = new Stats()

document.body.appendChild(stats.dom)

const animations = {

default: function () {

setAction(animationActions[0])

},

samba: function () {

setAction(animationActions[1])

},

bellydance: function () {

setAction(animationActions[2])

},

goofyrunning: function () {

setAction(animationActions[3])

},

}

const setAction = (toAction: THREE.AnimationAction) => {

if (toAction != activeAction) {

lastAction = activeAction

activeAction = toAction
//lastAction.stop()

lastAction.fadeOut(1)

activeAction.reset()

activeAction.fadeIn(1)

activeAction.play()

}

}

const gui = new GUI()

const animationsFolder = gui.addFolder('Animations')

animationsFolder.open()

const clock = new THREE.Clock()

function animate() {

requestAnimationFrame(animate)

复制代码
controls.update()

if (modelReady) mixer.update(clock.getDelta())

render()

stats.update()

}

function render() {

renderer.render(scene, camera)

}

animate()

最终脚本

./src/client/client.ts

import * as THREE from 'three'

import { OrbitControls } from 'three/examples/jsm/controls/OrbitControls'

import { GLTFLoader } from 'three/examples/jsm/loaders/GLTFLoader'

import Stats from 'three/examples/jsm/libs/stats.module'

import { GUI } from 'dat.gui'

const scene = new THREE.Scene()

scene.add(new THREE.AxesHelper(5))

const light1 = new THREE.PointLight(0xffffff, 1000)

light1.position.set(2.5, 2.5, 2.5)

scene.add(light1)

const light2 = new THREE.PointLight(0xffffff, 1000)

light2.position.set(-2.5, 2.5, 2.5)

scene.add(light2)

const camera = new THREE.PerspectiveCamera(

75,

window.innerWidth / window.innerHeight,

0.1,

1000

)

camera.position.set(0.8, 1.4, 1.0)

const renderer = new THREE.WebGLRenderer()

renderer.setSize(window.innerWidth, window.innerHeight)

document.body.appendChild(renderer.domElement)

const controls = new OrbitControls(camera, renderer.domElement)

controls.enableDamping = true

controls.target.set(0, 1, 0)

let mixer: THREE.AnimationMixer

let modelReady = false

const animationActions: THREE.AnimationAction[] = []

let activeAction: THREE.AnimationAction

let lastAction: THREE.AnimationAction

const gltfLoader = new GLTFLoader()

gltfLoader.load(

'models/vanguard.glb',

(gltf) => {

// gltf.scene.scale.set(.01, .01, .01)

复制代码
    mixer = new THREE.AnimationMixer(gltf.scene)

    const animationAction = mixer.clipAction((gltf as any).animations[0])
    animationActions.push(animationAction)
    animationsFolder.add(animations, 'default')
    activeAction = animationActions[0]

    scene.add(gltf.scene)

    //add an animation from another file
    gltfLoader.load(
        'models/[email protected]',
        (gltf) => {
            console.log('loaded samba')
            const animationAction = mixer.clipAction(
                (gltf as any).animations[0]
            )
            animationActions.push(animationAction)
            animationsFolder.add(animations, 'samba')

            //add an animation from another file
            gltfLoader.load(
                'models/[email protected]',
                (gltf) => {
                    console.log('loaded bellydance')
                    const animationAction = mixer.clipAction(
                        (gltf as any).animations[0]
                    )
                    animationActions.push(animationAction)
                    animationsFolder.add(animations, 'bellydance')

                    //add an animation from another file
                    gltfLoader.load(
                        'models/[email protected]',
                        (gltf) => {
                            console.log('loaded goofyrunning')
                            ;(gltf as any).animations[0].tracks.shift() //delete the specific track that moves the object forward while running
                            const animationAction = mixer.clipAction(
                                (gltf as any).animations[0]
                            )
                            animationActions.push(animationAction)
                            animationsFolder.add(animations, 'goofyrunning')

                            modelReady = true
                        },
                        (xhr) => {
                            console.log(
                                (xhr.loaded / xhr.total) * 100 + '% loaded'
                            )
                        },
                        (error) => {
                            console.log(error)
                        }
                    )
                },
                (xhr) => {
                    console.log((xhr.loaded / xhr.total) * 100 + '% loaded')
                },
                (error) => {
                    console.log(error)
                }
            )
        },
        (xhr) => {
            console.log((xhr.loaded / xhr.total) * 100 + '% loaded')
        },
        (error) => {
            console.log(error)
        }
    )
},
(xhr) => {
    console.log((xhr.loaded / xhr.total) * 100 + '% loaded')
},
(error) => {
    console.log(error)
}

)

window.addEventListener('resize', onWindowResize, false)

function onWindowResize() {

camera.aspect = window.innerWidth / window.innerHeight

camera.updateProjectionMatrix()

renderer.setSize(window.innerWidth, window.innerHeight)

render()

}

const stats = new Stats()

document.body.appendChild(stats.dom)

const animations = {

default: function () {

setAction(animationActions[0])

},

samba: function () {

setAction(animationActions[1])

},

bellydance: function () {

setAction(animationActions[2])

},

goofyrunning: function () {

setAction(animationActions[3])

},

}

const setAction = (toAction: THREE.AnimationAction) => {

if (toAction != activeAction) {

lastAction = activeAction

activeAction = toAction
//lastAction.stop()

lastAction.fadeOut(1)

activeAction.reset()

activeAction.fadeIn(1)

activeAction.play()

}

}

const gui = new GUI()

const animationsFolder = gui.addFolder('Animations')

animationsFolder.open()

const clock = new THREE.Clock()

function animate() {

requestAnimationFrame(animate)

复制代码
controls.update()

if (modelReady) mixer.update(clock.getDelta())

render()

stats.update()

}

function render() {

renderer.render(scene, camera)

}

animate()

原文链接:GLTF动画 (mvrlink.com)

相关推荐
用户17592342150284 分钟前
D3.js - 基本用法
前端·d3.js
满怀10155 分钟前
Python入门(5):异常处理
开发语言·python
攀小黑8 分钟前
Java 多线程加锁 synchronized 关键字 字符串当做key
java·开发语言
每次的天空18 分钟前
Kotlin 作用域函数:apply、let、run、with、also
android·开发语言·kotlin
Mr.Liu620 分钟前
小程序30-wxml语法-声明和绑定数据
前端·微信小程序·小程序
76756047921 分钟前
useDateFormat源码解析
前端·源码
Mintopia21 分钟前
Three.js粒子系统开发实战:从基础到性能优化
前端·javascript·three.js
小林熬夜学编程21 分钟前
【高并发内存池】第八弹---脱离new的定长内存池与多线程malloc测试
c语言·开发语言·数据结构·c++·算法·哈希算法
Promise52022 分钟前
大屏"跑马灯" 长列表性能优化
前端·javascript
子玖22 分钟前
初始化项目前的准备
前端·javascript·vue.js