@quenty/spring 3.1.0 → 3.1.1
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/CHANGELOG.md +8 -0
- package/package.json +2 -2
- package/src/Shared/Spring.lua +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [3.1.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/spring@3.1.0...@quenty/spring@3.1.1) (2022-01-06)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/spring
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.1.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/spring@3.0.1...@quenty/spring@3.1.0) (2022-01-03)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @quenty/spring
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/spring",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.1",
|
|
4
4
|
"description": "Spring implementation for Roblox",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -31,5 +31,5 @@
|
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@quenty/loader": "^3.2.0"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "0a0d3031f80f44ecab823d0a76707e4bb4c08a07"
|
|
35
35
|
}
|
package/src/Shared/Spring.lua
CHANGED
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
end)
|
|
22
22
|
```
|
|
23
23
|
|
|
24
|
-
A good visualization can be
|
|
24
|
+
A good visualization can be found here, provided by Defaultio:
|
|
25
25
|
https://www.desmos.com/calculator/hn2i9shxbz
|
|
26
26
|
|
|
27
27
|
@class Spring
|
|
@@ -268,4 +268,4 @@ function Spring:_positionVelocity(now)
|
|
|
268
268
|
b0*p0 + b1*p1 + b2*v0
|
|
269
269
|
end
|
|
270
270
|
|
|
271
|
-
return Spring
|
|
271
|
+
return Spring
|