12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <!DOCTYPE html>
- <html lang="it">
- <head>
- <meta charset="utf-8" />
- <base href="../../../../" />
- <script src="page.js"></script>
- <link type="text/css" rel="stylesheet" href="page.css" />
- </head>
- <body>
- [page:KeyframeTrack] →
- <h1>[name]</h1>
- <p class="desc">
- Una traccia di valori di string di keyframe.
- </p>
- <h2>Costruttore</h2>
- <h3>[name]( [param:String name], [param:Array times], [param:Array values] )</h3>
- <p>
- [page:String name] - (obbligatorio) identificativo per il KeyframeTrack.<br />
- [page:Array times] - (obbligatorio) array di tempi del keyframe.<br />
- [page:Array values] - valori per i keyframe ai tempi specificati.<br />
- [page:Constant interpolation] - il tipo di interpolazione da usare. Vedi
- [page:Animation Animation Constants] per i valori possibili. Il valore di default è
- [page:Animation InterpolateDiscrete].
- </p>
- <h2>Proprietà</h2>
- <p class="desc">
- Vedi [page:KeyframeTrack] per le proprietà ereditate.
- </p>
- <h3>[property:Constant DefaultInterpolation]</h3>
- <p>
- Il tipo di interpolazione di default da utilizzare, [page:Animation InterpolateDiscrete].
- </p>
- <h3>[property:Array ValueBufferType]</h3>
- <p>
- Un Array normale (non un Float32Array in questo caso, diversamente da ValueBufferType di [page:KeyframeTrack]).
- </p>
- <h3>[property:String ValueTypeName]</h3>
- <p>
- String 'string'.
- </p>
- <h2>Metodi</h2>
- <p class="desc">
- Vedi [page:KeyframeTrack] per i metodi ereditati.
- </p>
- <h3>[method:undefined InterpolantFactoryMethodLinear]()</h3>
- <p>
- Il valore di questo metodo è 'undefined', poiché non ha senso per le proprietà discrete.
- </p>
- <h3>[method:undefined InterpolantFactoryMethodSmooth]()</h3>
- <p>
- Il valore di questo metodo è 'undefined', poiché non ha senso per le proprietà discrete.
- </p>
- <h2>Source</h2>
- <p>
- [link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]
- </p>
- </body>
- </html>
|