Skip to content
This repository was archived by the owner on Mar 20, 2023. It is now read-only.

Commit bc8a187

Browse files
Merged in fix/spellcheck (pull request #80)
Spell-checking and docs update
2 parents 9a66b92 + b7c38d8 commit bc8a187

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+242
-164
lines changed

Editor/CUIGraphicEditor.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,17 +105,17 @@ public override void OnInspectorGUI()
105105

106106
if (GUILayout.Button("Reference CUI component for curves"))
107107
{
108-
Undo.RecordObject(script, "Reference Reference CUI");
109-
Undo.RecordObject(script.RefCurves[0], "Reference Reference CUI");
110-
Undo.RecordObject(script.RefCurves[1], "Reference Reference CUI");
108+
Undo.RecordObject(script, "Reference CUI");
109+
Undo.RecordObject(script.RefCurves[0], "Reference CUI");
110+
Undo.RecordObject(script.RefCurves[1], "Reference CUI");
111111
EditorUtility.SetDirty(script);
112112

113113
script.ReferenceCUIForBCurves();
114114

115115
script.Refresh();
116116
}
117117

118-
EditorGUILayout.HelpBox("Auto set the curves' control points by refencing another CUI. You need to set Ref CUI Graphic (e.g. CUIImage) first.", MessageType.Info);
118+
EditorGUILayout.HelpBox("Auto set the curves' control points by referencing another CUI. You need to set Ref CUI Graphic (e.g. CUIImage) first.", MessageType.Info);
119119

120120
EditorGUI.EndDisabledGroup();
121121
}

Editor/CanvasGroupActivator.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/// Credit dakka
22
/// Sourced from - http://forum.unity3d.com/threads/scripts-useful-4-6-scripts-collection.264161/#post-1752415
33
/// Notes - Mod from Yilmaz Kiymaz's editor scripts presentation at Unite 2013
4-
/// Updated ddreaper - removed Linq use, not required.
4+
/// Updated simonDarksideJ - removed Linq use, not required.
55

66
using UnityEditor;
77

@@ -61,7 +61,7 @@ void OnGUI()
6161
canvasGroups[i].interactable = false;
6262
canvasGroups[i].blocksRaycasts = false;
6363
}
64-
//If activated and initially deactive
64+
//If activated and initially deactivate
6565
else if (active && !initialActive)
6666
{
6767
//Deactivate all others and activate this

Editor/FancyScrollView/ScrollerEditor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using UnityEditor;
55
using UnityEditor.AnimatedValues;
66

7-
// For manteinance, every new [SerializeField] variable in Scroller must be declared here
7+
// For maintenance, every new [SerializeField] variable in Scroller must be declared here
88

99
namespace UnityEngine.UI.Extensions
1010
{

Editor/ScrollPositionControllerEditor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/// Credit setchi (https://github.com/setchi)
22
/// Sourced from - https://github.com/setchi/FancyScrollView
33

4-
// For manteinance, every new [SerializeField] variable in ScrollPositionController must be declared here
4+
// For maintenance, every new [SerializeField] variable in ScrollPositionController must be declared here
55

66
using UnityEditor;
77

Editor/UIExtensionsMenuOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -710,7 +710,7 @@ static public void AddUIWindowBase(MenuCommand menuCommand)
710710
}
711711
#endregion
712712

713-
#region Accordian
713+
#region Accordion
714714
[MenuItem("GameObject/UI/Extensions/Accordion/Accordion Group", false)]
715715
static public void AddAccordionGroup(MenuCommand menuCommand)
716716
{

README.md

Lines changed: 62 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,17 @@ In this repository is a collection of extension scripts / effects and controls t
2323
2424
You can either download / fork this project to access the scripts, or you can also download these pre-compiled Unity Assets, chock full of goodness for each release:
2525

26-
# [Download](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/Downloads) - 2019.1 (aka 2.1)
26+
# [Download - 2019.4 (aka 2.2)](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/Downloads)
2727

2828
We have expanded where you can download the UnityPackage asset and widened the options to contribute to the project.
2929

30-
> I will still stress however, ***contribution is optional***. **The asset / code will always remain FREE**
30+
> I will still stress however, ***contribution is optional***. **The assets / code will always remain FREE**
3131
3232
| [![Download from Itch.IO](https://bytebucket.org/UnityUIExtensions/unity-ui-extensions/wiki/SiteImages/itchio.png)](https://unityuiextensions.itch.io/uiextensions2-0 "Download from Itch.IO") | [![Download from Itch.IO](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/SiteImages/unionassets.png)](https://unionassets.com/unity-ui-extensions "Download from Union Assets") | [![Download from Itch.IO](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/SiteImages/patreon.jpg)](https://www.patreon.com/UnityUIExtensions "Support Unity UI Extensions on Patreon & download")|
3333
| :--- | :--- | :--- |
3434
| [Grab from Itchio](https://unityuiextensions.itch.io/uiextensions2-0) | [Obtain via Union Assets](https://unionassets.com/unity-ui-extensions) |[Support through Patreon](https://www.patreon.com/UnityUIExtensions) |
3535

36-
> Still available on the [BitBucket site](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/downloads/UnityUIExtensions-2019-1.unitypackage) if you prefer
36+
> Still available to download on the [BitBucket site](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/downloads) if you prefer
3737
3838
To view previous releases, visit the [release archive](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/Downloads)
3939

@@ -43,7 +43,7 @@ To view previous releases, visit the [release archive](https://bitbucket.org/Uni
4343

4444
If you wish to further support the Unity UI Extensions project itself, then you can either subsidise your downloads above, or using the links below.
4545

46-
All funds go to support the project, no matter the amount. Donations in code are also extremely welcome.
46+
All funds go to support the project, no matter the amount. **Donations in code are also extremely welcome**
4747

4848
| | |
4949
|---|---|
@@ -62,56 +62,64 @@ To get started with the project, here's a little guide:
6262

6363
# [Updates:](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/ReleaseNotes/RELEASENOTES)
6464

65-
## Update 2019.1 - formally 2.1 - Going with the times
65+
## Release 2019.4 - (v2.2) - Back from the future
6666

67-
Given that it's been a while since the last release and a fair few number of fixes have been introduced since the last update, it's only fair I get this point release out for the masses.
68-
This is only a point release and we are still working hard on the next full update
67+
It's been a long year since the last official release of the Unity UI Extensions project and WOW, have there been a lot of ups and downs. Big thanks to the community for their support of the project whether that was funds, code or even just testing and helping to iron out some pesky bugs.
6968

70-
> Be sure to logon to the new Gitter Chat site for the UI Extensions project, if you have any questions, queries or suggestions
69+
> Be sure to logon to the new [Gitter Chat](https://gitter.im/Unity-UI-Extensions/Lobby) site for the UI Extensions project, if you have any questions, queries or suggestions
7170
>
7271
> Much easier that posting a question / issue on YouTube, Twitter or Facebook :D
7372
>
7473
> ## [UIExtensions Gitter Chanel](https://gitter.im/Unity-UI-Extensions/Lobby)
7574
7675
### New / updated features
7776

78-
* Updated and tested with Unity 2018 / 2019
79-
* FancyScrollView updated with newer version (note breaking change)
80-
* Added test version of a LineRender control using a List instead of an array
81-
* New CardUI layout control, for a snazzy flip card system
82-
* New UI Circle Progress indicator control
77+
* New UPM deployment for Unity 2019, 2018 will still need to use the asset packages due to Unity compatibility issues.
78+
* Updated the project to the new Unity packaging guidelines, including separating out the examples to a separate package.
79+
* Many line drawing updates, including the ability to draw using a mouse (check the examples)
80+
* Scroll Snaps (HSS/VSS) now have a "Hard Swipe" feature to restrict movement to a single page for each swipe
81+
* Scroll Snaps have also been udpated to work better with the UIInfiniteScroll control
82+
* New Uniy Card UI controls thanks to @RyanslikeSoCool
83+
* Update to the Fancy Scoll controls with even more added fanciness
84+
* Several updates to adopt newer Unity standards in the controls to ensure full forwards and backwards compatibility
8385

8486
### Examples / Examples / Examples
85-
(All examples can be deleted without affecting the extensions)
87+
Examples now have their own package, this simplifies their use and deployment. Especially in 2019 with the UPM deployment.
8688

87-
* Added example for CardUI
88-
* Added example for the LineRendererList experiment
89-
* FancyScrollView examples updated to the new version
90-
* Example for new UICircle progress control
89+
* Refreshed all examples for Unity 2019
90+
* New Card UI Examples to supplement the new controls
91+
* New Infinite Scroll Snap example
92+
* Fancy Scroll view updated with 2 new examples
93+
* New particle system example, demonstrating programmatic control of the particle system
9194

9295
### Fixes
9396

94-
* General clean up of build warnings
95-
* Refactored primitive controls to be cleaner
96-
* Various HSS / VSS updates, mostly from the community
97-
* ScrollConflictManager updated to work better with nested HSS/VSS
98-
* UI Knob resolved to with screen space camera
99-
* Fix for the menu system, which was disabling prefabs instead of the scene instance
100-
* Fixed shader in UIParticle System
101-
* TextPic updated to support culling properly
102-
* Reorderable List updated with additional options
103-
* Screenspace overlay support added to the Tooltip control
104-
* UIParticle system now supports 3D rotation
105-
* UIVerticalScroller updated
106-
* Radial slider updated with
97+
* Mouse position use updated in
98+
- RadialSlider
99+
- ColorSampler
100+
- TiltWindow
101+
* Check compiler warnings (#197)
102+
* Line Renderer click to add lines (#183)
103+
* ScrollSnap Swiping options - hard fast swipe (#176)
104+
* Shader Loading issue / UIParticleSystem (#229)
105+
* Issue where Menu Prefabs would be disabled instead of their Clones (#210)
106+
* Check ScrollSnapBase update (#265)
107+
* UIInfiniteScroller support for VSS updated and fixes
108+
* Fix to allow radial slider to start from positions other than left
109+
* Fix UI Particles: Texture sheet animation + Random row(#256)
110+
* Fix for wandering ScrollSnap controls due to Local Positioning drift
111+
* Divide By Zero fix for Gradient (#58)
112+
107113

108114
### Known issues
109115
No new issues in this release, but check the issues list for things we are currently working on:
110116

111117
* [UI Extensions Issue log](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/issues?status=new&status=open)
112118

113119
## Upgrade Notes
114-
No significant concerns, should be able to update over the 2.1 package. If upgrading prior to 2.1, we still recommend removing the UnityUIExtensions folder and then re-importing
120+
Due to the restructure of the package to meet Unity's new package guidelines, we recomment **Deleting the current Unity UI Extensions** folder prior to importing the new package
121+
122+
For Unity 2019 users using the new UPM deployment, be sure to delete the existing folder in your assets folder before adding the new package to avoid conflict
115123

116124
----------------
117125
## Release History
@@ -134,10 +142,10 @@ There are almost 70+ extension controls / effect and other utilities in the proj
134142

135143
[Controls](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/Controls#markdown-header-controls)|||||
136144
------|------|------|------|
137-
Accordion|ColorPicker|SelectionBox|UIFlippable|ComboBox
138-
AutoCompleteComboBox|DropDownList|BoundToolTip|UIWindowBase|UI_Knob
139-
TextPic|InputFocus|Box Slider|CooldownButton|Segmented Control
140-
Stepper|Range Slider|||
145+
Accordion|ColorPicker|Selection Box|UI Flippable|ComboBox
146+
AutoComplete ComboBox|DropDown List|BoundToolTip|UIWindowBase|UI Knob
147+
TextPic|Input Focus|Box Slider|Cooldown Button|Segmented Control
148+
Stepper|Range Slider|Radial Slider|MultiTouch Scroll Rect|
141149
||||
142150

143151
[Primitives](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/Controls#markdown-header-primitives)|||||
@@ -150,14 +158,14 @@ UIPolygon||||
150158
------|------|------|------|
151159
Horizontal Scroll Snap|Vertical Scroll Snap|Flow Layout Group|Radial Layout|Tile Size Fitter
152160
Scroll Snap (alt implementation)|Reorderable List|UI Vertical Scroller|Curved Layout|Table Layout
153-
FancyScrollView||||
161+
FancyScrollView|Card UI|Scroll Position Controller||
154162
||||
155163

156164
[Effects](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/Controls#markdown-header-effect_components)|||||
157165
------|------|------|------|
158166
Best Fit Outline|Curved Text|Gradient|Gradient2|Letter Spacing
159167
NicerOutline|RaycastMask|UIFlippable|UIImageCrop|SoftAlphaMask
160-
CylinderText|UIParticleSystem|CurlyUI||
168+
CylinderText|UIParticleSystem|CurlyUI|Shine Effect|Shader Effects
161169
||||
162170

163171
[VR Components](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/Controls#markdown-header-vr_components)|||||
@@ -184,21 +192,32 @@ UIHighlightable|Menu Manager|Pagination Manager||
184192
---
185193

186194

187-
# [How do I get set up? ](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/GettingStarted)
195+
# [How do I get set up?](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/GettingStarted)
196+
197+
As of Unity 2019, there are now two paths for getting access to the Unity UI Extensions project:
188198

199+
- Unity 2019 or higher
200+
The recommended way to add the Unity UI Extensions project to your solution is to use the Unity package Manager. Simply use the [Unity Package Manager](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/UPMInstallation) to reference the project and install it.
201+
202+
Alternatively, you can also use the pre-compiled Unity packages if you wish, however, UPM offers full versioning support to allow you to switch versions as you wish.
203+
204+
- Unity 2018 or lower
205+
The pre-compiled Unity assets are the only solution for Unity 2018 or earlier due to the changes in the Unity UI framework in Unity made for 2019.
189206
Either clone / download this repository to your machine and then copy the scripts in, or use the pre-packaged .UnityPackage for your version of Unity and import it as a custom package in to your project.
190207

191208
# [Contribution guidelines ](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/ContributionGuidelines)
192209

193210
Got a script you want added? Then just fork the bitbucket repository and submit a PR. All contributions accepted (including fixes)
194-
Just ensure
195-
* The header of the script matches the standard used in all scripts
211+
212+
Just ensure:
213+
214+
* The header of the script should match the standard used in all scripts
196215
* The script uses the **Unity.UI.Extensions** namespace so they do not affect any other developments
197216
* (optional) Add Component and Editor options where possible (editor options are in the Editor\UIExtensionsMenuOptions.cs file)
198217

199218
# [License ](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/License)
200219

201-
All scripts conform to the BSD license and are free to use / distribute. See the [LICENSE](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/License) file for more information
220+
All scripts conform to the BSD3 license and are free to use / distribute. See the [LICENSE](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/License) file for more information
202221

203222
# [Like what you see? ](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/FurtherInfo)
204223

@@ -213,17 +232,4 @@ I will add more sample scenes for the UI examples in this repository and detail
213232

214233
# [Previous Releases](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/Downloads)
215234

216-
* [Unity UI Extensions Unity 4.x Asset](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/downloads/UnityUIExtensions-4.x.unitypackage)
217-
218-
* [Unity UI Extensions Unity 5.1 Asset](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/downloads/UnityUIExtensions-5.1.unitypackage)
219-
220-
* [Unity UI Extensions Unity 5.2 Asset](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/downloads/UnityUIExtensions-5.2.unitypackage) <- 5.2.0 - 5.2.1 base releases ONLY
221-
222-
* [Unity UI Extensions Unity 5.3 (5.2.1P+) Asset](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/downloads/UnityUIExtensions-5.3.unitypackage) <- use this for 5.2.1P+ releases
223-
224-
> **Note** To retain 5.2 compatibility in the 5.3 package, you will see two warnings related to:
225-
> ```
226-
> `UnityEngine.UI.InputField.onValueChange' is obsolete.
227-
> ```
228-
> This has no effect on the package working in 5.4 plus and is only there to maintain backwards compatibility. We will look to update/remove this in a future release, likely after 5.4.
229-
If you have any concerns, feel free to update your code in your project to add the missing "d". Unity have ensured it still works as they have mapped the API change for now.
235+
Please see the [full downloads list](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/Downloads) for all previous releases and their corresponding download links.

0 commit comments

Comments
 (0)