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

Commit a7a17af

Browse files
Unity 2018 patchfix
1 parent ccad953 commit a7a17af

File tree

7 files changed

+7
-145
lines changed

7 files changed

+7
-145
lines changed

README.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ All funds go to support the project, no matter the amount. **Donations in code a
5757
-----
5858

5959
## [Getting Started](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/GettingStarted)
60+
6061
To get started with the project, here's a little guide:
6162

6263
[![View Getting Started Video](http://img.youtube.com/vi/sVLeYmsNQAI/0.jpg)](http://www.youtube.com/watch?v=sVLeYmsNQAI "Unity UI getting started video")
@@ -149,7 +150,7 @@ There are almost 70+ extension controls / effect and other utilities in the proj
149150

150151
> ## [Check out the control demos on our Tumblr page](https://www.tumblr.com/blog/unityuiextensions)
151152
>
152-
> | [![UI Line Renderer](https://bytebucket.org/UnityUIExtensions/unity-ui-extensions/wiki/SiteImages/LineRenderer.gif)](https://www.tumblr.com/blog/unityuiextensions "UI Line Renderer") | [![UI Knob](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/SiteImages/UIKnob.gif)](https://www.tumblr.com/blog/unityuiextensions "UI Knob") | [![ScrollSnap](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/SiteImages/ScrollSnap.gif)](https://www.tumblr.com/blog/unityuiextensions "Scroll Snap")|
153+
> | [![UI Line Renderer](https://bytebucket.org/UnityUIExtensions/unity-ui-extensions/wiki/SiteImages/LineRenderer.gif)](https://www.tumblr.com/blog/unityuiextensions "UI Line Renderer") | [![UI Knob](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/SiteImages/UIKnob.gif)](https://www.tumblr.com/blog/unityuiextensions "UI Knob") | [![ScrollSnap](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/SiteImages/ScrollSnap.gif)](https://www.tumblr.com/blog/unityuiextensions "Scroll Snap")|
153154
> | :--- | :--- | :--- |
154155
> | [UI Line Renderer](https://www.tumblr.com/blog/unityuiextensions) | [UI Knob](https://www.tumblr.com/blog/unityuiextensions) |[Scroll Snap](https://www.tumblr.com/blog/unityuiextensions) |
155156
@@ -183,11 +184,6 @@ NicerOutline|RaycastMask|UIFlippable|UIImageCrop|SoftAlphaMask
183184
CylinderText|UIParticleSystem|CurlyUI|Shine Effect|Shader Effects
184185
||||
185186

186-
[VR Components](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/Controls#markdown-header-vr_components)|||||
187-
------|------|------|------|
188-
VRCursor|VRInputModule|||
189-
||||
190-
191187
[Additional Components](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/Controls#markdown-header-additional_components)|||||
192188
------|------|------|------|
193189
ReturnKeyTrigger|TabNavigation|uGUITools|ScrollRectTweener|ScrollRectLinker

Runtime/Scripts/Effects/UIParticleSystem.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,11 @@ protected override void OnPopulateMesh(VertexHelper vh)
223223
frame = Mathf.FloorToInt(frameProgress * textureSheetAnimation.numTilesX);
224224

225225
int row = textureSheetAnimation.rowIndex;
226+
#if UNITY_2019_OR_NEWER
226227
if (textureSheetAnimation.rowMode == ParticleSystemAnimationRowMode.Random)
228+
#else
229+
if (textureSheetAnimation.useRandomRow)
230+
#endif
227231
{ // FIXME - is this handled internally by rowIndex?
228232
row = Mathf.Abs((int)particle.randomSeed % textureSheetAnimation.numTilesY);
229233
}
@@ -403,4 +407,4 @@ public void PauseParticleEmission()
403407
}
404408
}
405409
#endif
406-
}
410+
}

Runtime/Scripts/VR Extensions.meta

Lines changed: 0 additions & 5 deletions
This file was deleted.

Runtime/Scripts/VR Extensions/VRCursor.cs

Lines changed: 0 additions & 48 deletions
This file was deleted.

Runtime/Scripts/VR Extensions/VRCursor.cs.meta

Lines changed: 0 additions & 8 deletions
This file was deleted.

Runtime/Scripts/VR Extensions/VRInputModule.cs

Lines changed: 0 additions & 69 deletions
This file was deleted.

Runtime/Scripts/VR Extensions/VRInputModule.cs.meta

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)