codecamp

three.js StringKeyframeTrack

字符串类型的关键帧轨道

构造函数

StringKeyframeTrack( name : String, times : Array, values : Array )

name - (必须) 关键帧轨道(KeyframeTrack)的标识符.times - (必须) 关键帧的时间数组.values - 与时间数组中的时间点对应的值数组.interpolation - 使用的插值类型。 取值参考 Animation Constants 默认值为 InterpolateDiscrete.

属性

参见 KeyframeTrack 查看继承的属性.

.DefaultInterpolation : Constant

默认的插值类型。 参见 InterpolateDiscrete.

.ValueBufferType : Array

一个基本数组 (不是 Float32Array 类型, 与 KeyframeTrack 内的 ValueBufferType 属性不一样).

.ValueTypeName : String

字符串 'string'.

方法

参见 KeyframeTrack 查看继承的方法.

.InterpolantFactoryMethodLinear () : undefined

这个方法在这里的值为 'undefined', 因为他对离散属性没有意义.

.InterpolantFactoryMethodSmooth () : undefined

这个方法在这里的值为 'undefined', 因为他对离散属性没有意义.

源码

src/animation/tracks/StringKeyframeTrack.js


three.js QuaternionKeyframeTrack
three.js VectorKeyframeTrack
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

参考

核心 / BufferAttributes

渲染器 / WebXR

开发者参考

WebGL渲染器

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }