@quenty/sprites 8.1.0 → 8.2.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
+ # [8.2.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/sprites@8.1.0...@quenty/sprites@8.2.0) (2023-05-26)
7
+
8
+
9
+ ### Features
10
+
11
+ * Initial refactor of guis to use ValueObject instead of ValueObject ([723aba0](https://github.com/Quenty/NevermoreEngine/commit/723aba0208cae7e06c9d8bf2d8f0092d042d70ea))
12
+
13
+
14
+
15
+
16
+
6
17
  # [8.1.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/sprites@8.0.1...@quenty/sprites@8.1.0) (2023-04-24)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/sprites
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/sprites",
3
- "version": "8.1.0",
3
+ "version": "8.2.0",
4
4
  "description": "Spritesheet utility for Roblox including a built-in InputImageLibrary",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -29,7 +29,7 @@
29
29
  "@quenty/baseobject": "^6.2.1",
30
30
  "@quenty/loader": "^6.2.1",
31
31
  "@quenty/maid": "^2.5.0",
32
- "@quenty/uiobjectutils": "^3.3.0"
32
+ "@quenty/uiobjectutils": "^3.4.0"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@quenty/string": "^3.1.0"
@@ -37,5 +37,5 @@
37
37
  "publishConfig": {
38
38
  "access": "public"
39
39
  },
40
- "gitHead": "a8a760988c8fd88c2581c5c496a8bad845de104c"
40
+ "gitHead": "11058e90e51ea83d3dad6ae9abe59cc19c36b94b"
41
41
  }
@@ -15,7 +15,7 @@ Gestures.__index = Gestures
15
15
  function Gestures.new()
16
16
  local self = setmetatable(Spritesheet.new("rbxassetid://1244652786"), Gestures)
17
17
 
18
- self:AddSprite("DoubleRotate", Vector2.new(0, 0), Vector2.new(102, 139))
18
+ self:AddSprite("DoubleRotate", Vector2.zero, Vector2.new(102, 139))
19
19
  self:AddSprite("DoubleTap", Vector2.new(102, 0), Vector2.new(100, 100))
20
20
  self:AddSprite("FingerFront", Vector2.new(202, 0), Vector2.new(100, 100))
21
21
  self:AddSprite("FingerSide", Vector2.new(302, 0), Vector2.new(100, 100))
@@ -15,7 +15,7 @@ KeyboardDark.__index = KeyboardDark
15
15
  function KeyboardDark.new()
16
16
  local self = setmetatable(Spritesheet.new("rbxassetid://1244652930"), KeyboardDark)
17
17
 
18
- self:AddSprite("BackspaceAlt", Vector2.new(0, 0), Vector2.new(100, 100))
18
+ self:AddSprite("BackspaceAlt", Vector2.zero, Vector2.new(100, 100))
19
19
  self:AddSprite("Command", Vector2.new(100, 0), Vector2.new(100, 100))
20
20
  self:AddSprite("Eleven", Vector2.new(200, 0), Vector2.new(100, 100))
21
21
  self:AddSprite(Enum.KeyCode.Return, Vector2.new(300, 0), Vector2.new(100, 100))
@@ -15,7 +15,7 @@ KeyboardLight.__index = KeyboardLight
15
15
  function KeyboardLight.new()
16
16
  local self = setmetatable(Spritesheet.new("rbxassetid://1244653012"), KeyboardLight)
17
17
 
18
- self:AddSprite("BackspaceAlt", Vector2.new(0, 0), Vector2.new(100, 100))
18
+ self:AddSprite("BackspaceAlt", Vector2.zero, Vector2.new(100, 100))
19
19
  self:AddSprite("Command", Vector2.new(100, 0), Vector2.new(100, 100))
20
20
  self:AddSprite("Eleven", Vector2.new(200, 0), Vector2.new(100, 100))
21
21
  self:AddSprite(Enum.KeyCode.Return, Vector2.new(300, 0), Vector2.new(100, 100))
@@ -15,7 +15,7 @@ XboxOneDark.__index = XboxOneDark
15
15
  function XboxOneDark.new()
16
16
  local self = setmetatable(Spritesheet.new("rbxassetid://5089898851"), XboxOneDark)
17
17
 
18
- self:AddSprite("DPad", Vector2.new(0, 0), Vector2.new(100, 100))
18
+ self:AddSprite("DPad", Vector2.zero, Vector2.new(100, 100))
19
19
  self:AddSprite(Enum.KeyCode.ButtonA, Vector2.new(100, 0), Vector2.new(100, 100))
20
20
  self:AddSprite(Enum.KeyCode.ButtonB, Vector2.new(200, 0), Vector2.new(100, 100))
21
21
  self:AddSprite(Enum.KeyCode.ButtonL1, Vector2.new(300, 0), Vector2.new(100, 100))
@@ -15,7 +15,7 @@ XboxOneLight.__index = XboxOneLight
15
15
  function XboxOneLight.new()
16
16
  local self = setmetatable(Spritesheet.new("rbxassetid://5104051626"), XboxOneLight)
17
17
 
18
- self:AddSprite("DPad", Vector2.new(0, 0), Vector2.new(100, 100))
18
+ self:AddSprite("DPad", Vector2.zero, Vector2.new(100, 100))
19
19
  self:AddSprite(Enum.KeyCode.ButtonA, Vector2.new(100, 0), Vector2.new(100, 100))
20
20
  self:AddSprite(Enum.KeyCode.ButtonB, Vector2.new(200, 0), Vector2.new(100, 100))
21
21
  self:AddSprite(Enum.KeyCode.ButtonL1, Vector2.new(300, 0), Vector2.new(100, 100))