@quenty/animationprovider 3.3.0 → 3.4.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
CHANGED
|
@@ -3,6 +3,28 @@
|
|
|
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.4.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/animationprovider@3.4.0...@quenty/animationprovider@3.4.1) (2021-12-04)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Do not search for the animation provider in replicated storage ([082f72b](https://github.com/Quenty/NevermoreEngine/commit/082f72ba4d183845984e91168bc6a1ee09fe5874))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [3.4.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/animationprovider@3.3.0...@quenty/animationprovider@3.4.0) (2021-11-20)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* Support MacOS syncing ([#225](https://github.com/Quenty/NevermoreEngine/issues/225)) ([03f9183](https://github.com/Quenty/NevermoreEngine/commit/03f918392c6a5bdd33f8a17c38de371d1e06c67a))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
# [3.3.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/animationprovider@3.2.2...@quenty/animationprovider@3.3.0) (2021-11-10)
|
|
7
29
|
|
|
8
30
|
**Note:** Version bump only for package @quenty/animationprovider
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/animationprovider",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.4.1",
|
|
4
4
|
"description": "Provides animations for anything tagged with \"AnimationContainer\" and from a folder named \"Animations\" in ReplicatedStorage.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -26,10 +26,10 @@
|
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@quenty/loader": "^3.1.1",
|
|
29
|
-
"@quenty/templateprovider": "^3.
|
|
29
|
+
"@quenty/templateprovider": "^3.4.0"
|
|
30
30
|
},
|
|
31
31
|
"publishConfig": {
|
|
32
32
|
"access": "public"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "a0583027b100d718bce1603ec6c525ad99adeeac"
|
|
35
35
|
}
|
|
@@ -5,15 +5,6 @@
|
|
|
5
5
|
|
|
6
6
|
local require = require(script.Parent.loader).load(script)
|
|
7
7
|
|
|
8
|
-
local ReplicatedStorage = game:GetService("ReplicatedStorage")
|
|
9
8
|
local TaggedTemplateProvider = require("TaggedTemplateProvider")
|
|
10
9
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
-- This is a fallback animation setup
|
|
14
|
-
local animations = ReplicatedStorage:FindFirstChild("Animations")
|
|
15
|
-
if animations then
|
|
16
|
-
provider:AddContainer(animations)
|
|
17
|
-
end
|
|
18
|
-
|
|
19
|
-
return provider
|
|
10
|
+
return TaggedTemplateProvider.new("AnimationContainer")
|