com.wallstop-studios.unity-helpers 2.0.0-rc73.2 → 2.0.0-rc73.3

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.
Files changed (26) hide show
  1. package/Runtime/Tags/AttributeEffect.cs +1 -0
  2. package/Styles/Elements/Progress/ArcedProgressBar.cs +345 -0
  3. package/Styles/Elements/Progress/ArcedProgressBar.cs.meta +3 -0
  4. package/Styles/Elements/{CircularProgressBar.cs → Progress/CircularProgressBar.cs} +56 -55
  5. package/Styles/Elements/Progress/GlitchProgressBar.cs +416 -0
  6. package/Styles/Elements/Progress/GlitchProgressBar.cs.meta +3 -0
  7. package/Styles/Elements/Progress/LiquidProgressBar.cs +632 -0
  8. package/Styles/Elements/Progress/LiquidProgressBar.cs.meta +3 -0
  9. package/Styles/Elements/Progress/MarchingAntsProgressBar.cs +722 -0
  10. package/Styles/Elements/Progress/MarchingAntsProgressBar.cs.meta +3 -0
  11. package/Styles/Elements/{RegularProgressBar.cs → Progress/RegularProgressBar.cs} +24 -13
  12. package/Styles/Elements/Progress/WigglyProgressBar.cs +837 -0
  13. package/Styles/Elements/Progress/WigglyProgressBar.cs.meta +3 -0
  14. package/Styles/Elements/Progress.meta +3 -0
  15. package/Styles/USS/ArcedProgressBar.uss +19 -0
  16. package/Styles/USS/ArcedProgressBar.uss.meta +3 -0
  17. package/Styles/USS/WigglyProgressBar.uss +17 -0
  18. package/Styles/USS/WigglyProgressBar.uss.meta +3 -0
  19. package/package.json +2 -1
  20. package/Styles/UXML/CircularProgressBar.uxml +0 -11
  21. package/Styles/UXML/CircularProgressBar.uxml.meta +0 -10
  22. package/Styles/UXML/RegularProgressBar.uxml +0 -22
  23. package/Styles/UXML/RegularProgressBar.uxml.meta +0 -10
  24. package/Styles/UXML.meta +0 -3
  25. /package/Styles/Elements/{CircularProgressBar.cs.meta → Progress/CircularProgressBar.cs.meta} +0 -0
  26. /package/Styles/Elements/{RegularProgressBar.cs.meta → Progress/RegularProgressBar.cs.meta} +0 -0
@@ -0,0 +1,3 @@
1
+ fileFormatVersion: 2
2
+ guid: 5bb2d5afae6043ea9ec6a4b6149e4756
3
+ timeCreated: 1746728178
@@ -0,0 +1,3 @@
1
+ fileFormatVersion: 2
2
+ guid: 54c2408b268c4f39a83623ffd69c3548
3
+ timeCreated: 1746719104
@@ -0,0 +1,19 @@
1
+ .arced-progress-bar {
2
+ --arc-track-color: rgb(80, 80, 80);
3
+ --arc-progress-color: #FF9800;
4
+ --arc-thickness: 12px;
5
+ margin: 10px;
6
+ align-self: center;
7
+ }
8
+
9
+ .arced-progress-bar.sharp-ends {
10
+ --arc-progress-color: #E91E63;
11
+ --arc-track-color: #4CAF50;
12
+ --arc-thickness: 8px;
13
+ }
14
+
15
+ .arced-progress-bar.gauge-style {
16
+ --arc-track-color: #607D8B;
17
+ --arc-progress-color: #00BCD4;
18
+ --arc-thickness: 20px;
19
+ }
@@ -0,0 +1,3 @@
1
+ fileFormatVersion: 2
2
+ guid: 3b7a08ad78454fdda46e12332dde7d58
3
+ timeCreated: 1746719474
@@ -0,0 +1,17 @@
1
+ .wiggly-progress-bar {
2
+ --wiggly-track-color: rgb(70, 70, 70);
3
+ --wiggly-progress-color: rgb(51, 153, 255);
4
+ --wiggly-thickness: 5px;
5
+ }
6
+
7
+ .wiggly-progress-bar.funky-wave {
8
+ --wiggly-progress-color: #FF00FF;
9
+ --wiggly-track-color: #FFFF00;
10
+ --wiggly-thickness: 8px;
11
+ }
12
+
13
+ .wiggly-progress-bar.subtle-ripple {
14
+ --wiggly-track-color: #e0e0e0;
15
+ --wiggly-progress-color: #77ccff;
16
+ --wiggly-thickness: 3px;
17
+ }
@@ -0,0 +1,3 @@
1
+ fileFormatVersion: 2
2
+ guid: da2f5b1495a147fcaa835ef4ea3edfd3
3
+ timeCreated: 1746728772
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "com.wallstop-studios.unity-helpers",
3
- "version": "2.0.0-rc73.2",
3
+ "version": "2.0.0-rc73.3",
4
4
  "displayName": "Unity Helpers",
5
5
  "description": "Various Unity Helper Library",
6
6
  "dependencies": {},
@@ -38,3 +38,4 @@
38
38
  }
39
39
 
40
40
 
41
+
@@ -1,11 +0,0 @@
1
- <ui:UXML xmlns:ui="UnityEngine.UIElements" xmlns:custom="WallstopStudios.UnityHelpers.Styles.Elements">
2
- <ui:VisualElement style="flex-grow: 1; align-items: center; justify-content: space-around;">
3
- <custom:CircularProgressBar radius="60" thickness="12" progress="0.75"
4
- start-at="Top" direction="Clockwise"
5
- progress-color-attr="blue" track-color-attr="lightgrey" />
6
- <custom:CircularProgressBar progress="0.3" radius="40" />
7
- <custom:CircularProgressBar class="warning" progress="0.9" radius="50" start-at="Bottom"
8
- direction="CounterClockwise" />
9
- <custom:CircularProgressBar class="slim" progress="0.5" radius="70" start-at="Left" direction="Clockwise" />
10
- </ui:VisualElement>
11
- </ui:UXML>
@@ -1,10 +0,0 @@
1
- fileFormatVersion: 2
2
- guid: 30396d1b727a20a469166139b7d733d0
3
- ScriptedImporter:
4
- internalIDToNameTable: []
5
- externalObjects: {}
6
- serializedVersion: 2
7
- userData:
8
- assetBundleName:
9
- assetBundleVariant:
10
- script: {fileID: 13804, guid: 0000000000000000e000000000000000, type: 0}
@@ -1,22 +0,0 @@
1
- <ui:UXML xmlns:ui="UnityEngine.UIElements"
2
- xmlns:custom="WallstopStudios.UnityHelpers.Styles.Elements">
3
- <ui:VisualElement style="flex-direction: column; align-items: stretch; padding: 20px; width: 300px;">
4
- <ui:Label text="Horizontal Progress Bars" />
5
- <custom:RegularProgressBar progress="0.65" orientation="Horizontal"
6
- thickness="20" border-radius="5"
7
- progress-color-attr="#FFC107" track-color-attr="#424242" />
8
- <custom:RegularProgressBar progress="0.3" orientation="Horizontal" />
9
- <custom:RegularProgressBar class="slim-style" progress="0.8" orientation="Horizontal" />
10
- <ui:Label text="Vertical Progress Bars" style="margin-top: 20px;" />
11
- <ui:VisualElement
12
- style="flex-direction: row; height: 150px; justify-content: space-around; align-items: stretch;">
13
- <custom:RegularProgressBar progress="0.75" orientation="Vertical"
14
- thickness="25" border-radius="8"
15
- style="height: 120px;" />
16
- <custom:RegularProgressBar class="warning-state" progress="0.5"
17
- orientation="Vertical"
18
- thickness="18"
19
- style="height: 100px;" />
20
- </ui:VisualElement>
21
- </ui:VisualElement>
22
- </ui:UXML>
@@ -1,10 +0,0 @@
1
- fileFormatVersion: 2
2
- guid: b087d78ca899c3f4aa3acff6f2761a5b
3
- ScriptedImporter:
4
- internalIDToNameTable: []
5
- externalObjects: {}
6
- serializedVersion: 2
7
- userData:
8
- assetBundleName:
9
- assetBundleVariant:
10
- script: {fileID: 13804, guid: 0000000000000000e000000000000000, type: 0}
package/Styles/UXML.meta DELETED
@@ -1,3 +0,0 @@
1
- fileFormatVersion: 2
2
- guid: 176a185ae21b4235b9add846132baa56
3
- timeCreated: 1746656378