@quenty/acceltween 2.4.0 → 2.4.1-canary.478.013677d.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/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
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
+ ## [2.4.1-canary.478.013677d.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/acceltween@2.4.0...@quenty/acceltween@2.4.1-canary.478.013677d.0) (2024-08-24)
7
+
8
+
9
+ ### Features
10
+
11
+ * Unedited all changes ([60e64e3](https://github.com/Quenty/NevermoreEngine/commit/60e64e3efce17c10c4b8965871187d231b338dd4))
12
+
13
+
14
+
15
+
16
+
6
17
  # [2.4.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/acceltween@2.3.0...@quenty/acceltween@2.4.0) (2024-05-09)
7
18
 
8
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/acceltween",
3
- "version": "2.4.0",
3
+ "version": "2.4.1-canary.478.013677d.0",
4
4
  "description": "AccelTween implementation for Roblox",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -28,5 +28,5 @@
28
28
  "publishConfig": {
29
29
  "access": "public"
30
30
  },
31
- "gitHead": "3fd5cdca3128bf34c8d9dfae1e92d62533b6e6f5"
31
+ "gitHead": "013677ddf1f34b223c027d332d00450722b8fd41"
32
32
  }
@@ -95,7 +95,7 @@ function AccelTween:__index(index)
95
95
  local time = os.clock()
96
96
  return time < self._t1 and self._t1 - time or 0
97
97
  else
98
- error(("Bad index %q"):format(tostring(index)))
98
+ error(string.format("Bad index %q", tostring(index)))
99
99
  end
100
100
  end
101
101
 
@@ -111,7 +111,7 @@ function AccelTween:__newindex(index, value)
111
111
  elseif index == "pt" then
112
112
  self:_setstate(value, 0, nil, value)
113
113
  else
114
- error(("Bad index %q"):format(tostring(index)))
114
+ error(string.format("Bad index %q", tostring(index)))
115
115
  end
116
116
  end
117
117