@tweenjs/tween.js 20.0.3 → 21.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -3
- package/dist/tween.amd.js +1 -1
- package/dist/tween.cjs.js +1 -1
- package/dist/tween.d.ts +1 -1
- package/dist/tween.esm.js +1 -1
- package/dist/tween.umd.js +1 -1
- package/package.json +9 -2
package/README.md
CHANGED
|
@@ -7,6 +7,8 @@ JavaScript (TypeScript) tweening engine for easy animations, incorporating optim
|
|
|
7
7
|
[![NPM Downloads][downloads-image]][downloads-url]
|
|
8
8
|
[![Build and Tests][ci-image]][ci-url]
|
|
9
9
|
|
|
10
|
+
More languages: [English](./README.md), [简体中文](./README_zh-CN.md)
|
|
11
|
+
|
|
10
12
|
---
|
|
11
13
|
|
|
12
14
|
```html
|
|
@@ -149,9 +151,8 @@ import * as TWEEN from '@tweenjs/tween.js'
|
|
|
149
151
|
|
|
150
152
|
- [User guide](./docs/user_guide.md)
|
|
151
153
|
- [Contributor guide](./docs/contributor_guide.md)
|
|
152
|
-
- [Tutorial](http://learningthreejs.com/blog/2011/08/17/tweenjs-for-smooth-animation/) using tween.js with three.js
|
|
154
|
+
- [Tutorial](https://web.archive.org/web/20220601192930/http://learningthreejs.com/blog/2011/08/17/tweenjs-for-smooth-animation/) using tween.js with three.js
|
|
153
155
|
- Also: [libtween](https://github.com/jsm174/libtween), a port of tween.js to C by [jsm174](https://github.com/jsm174)
|
|
154
|
-
- [Understanding tween.js](https://mikebolt.me/article/understanding-tweenjs.html)
|
|
155
156
|
|
|
156
157
|
# Examples
|
|
157
158
|
|
|
@@ -367,7 +368,7 @@ If you want to add any feature or change existing features, you _must_ run the t
|
|
|
367
368
|
|
|
368
369
|
# People
|
|
369
370
|
|
|
370
|
-
Maintainers: [
|
|
371
|
+
Maintainers: [Joe Pea (@trusktr)](https://github.com/trusktr).
|
|
371
372
|
|
|
372
373
|
[All contributors](http://github.com/tweenjs/tween.js/contributors).
|
|
373
374
|
|
package/dist/tween.amd.js
CHANGED
package/dist/tween.cjs.js
CHANGED
package/dist/tween.d.ts
CHANGED
package/dist/tween.esm.js
CHANGED
package/dist/tween.umd.js
CHANGED
package/package.json
CHANGED
|
@@ -1,11 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tweenjs/tween.js",
|
|
3
|
-
"description": "
|
|
4
|
-
"version": "
|
|
3
|
+
"description": "Simple and fast tweening engine with optimised Robert Penner's equations.",
|
|
4
|
+
"version": "21.1.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/tween.cjs.js",
|
|
7
7
|
"types": "dist/tween.d.ts",
|
|
8
8
|
"module": "dist/tween.esm.js",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": "./dist/tween.esm.js",
|
|
12
|
+
"require": "./dist/tween.cjs.js",
|
|
13
|
+
"types": "./dist/tween.d.ts"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
9
16
|
"files": [
|
|
10
17
|
"dist",
|
|
11
18
|
"README.md",
|