diff --git a/README.md b/README.md index c904a92..b5b9758 100644 --- a/README.md +++ b/README.md @@ -57,6 +57,7 @@ All funds go to support the project, no matter the amount. **Donations in code a ----- ## [Getting Started](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/GettingStarted) + To get started with the project, here's a little guide: [![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 > ## [Check out the control demos on our Tumblr page](https://www.tumblr.com/blog/unityuiextensions) > -> | [![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")| +> | [![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")| > | :--- | :--- | :--- | > | [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) | @@ -183,11 +184,6 @@ NicerOutline|RaycastMask|UIFlippable|UIImageCrop|SoftAlphaMask CylinderText|UIParticleSystem|CurlyUI|Shine Effect|Shader Effects |||| -[VR Components](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/Controls#markdown-header-vr_components)||||| -------|------|------|------| -VRCursor|VRInputModule||| -|||| - [Additional Components](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/Controls#markdown-header-additional_components)||||| ------|------|------|------| ReturnKeyTrigger|TabNavigation|uGUITools|ScrollRectTweener|ScrollRectLinker diff --git a/Runtime/Scripts/Effects/UIParticleSystem.cs b/Runtime/Scripts/Effects/UIParticleSystem.cs index 663723e..11cb052 100644 --- a/Runtime/Scripts/Effects/UIParticleSystem.cs +++ b/Runtime/Scripts/Effects/UIParticleSystem.cs @@ -223,7 +223,11 @@ namespace UnityEngine.UI.Extensions frame = Mathf.FloorToInt(frameProgress * textureSheetAnimation.numTilesX); int row = textureSheetAnimation.rowIndex; +#if UNITY_2019_OR_NEWER if (textureSheetAnimation.rowMode == ParticleSystemAnimationRowMode.Random) +#else + if (textureSheetAnimation.useRandomRow) +#endif { // FIXME - is this handled internally by rowIndex? row = Mathf.Abs((int)particle.randomSeed % textureSheetAnimation.numTilesY); } @@ -403,4 +407,4 @@ namespace UnityEngine.UI.Extensions } } #endif -} \ No newline at end of file + } \ No newline at end of file diff --git a/Runtime/Scripts/VR Extensions.meta b/Runtime/Scripts/VR Extensions.meta deleted file mode 100644 index 93f163f..0000000 --- a/Runtime/Scripts/VR Extensions.meta +++ /dev/null @@ -1,5 +0,0 @@ -fileFormatVersion: 2 -guid: c84a253080bc0ec4995041aa5a6656ae -folderAsset: yes -DefaultImporter: - userData: diff --git a/Runtime/Scripts/VR Extensions/VRCursor.cs b/Runtime/Scripts/VR Extensions/VRCursor.cs deleted file mode 100644 index 50e06ad..0000000 --- a/Runtime/Scripts/VR Extensions/VRCursor.cs +++ /dev/null @@ -1,48 +0,0 @@ -/// Credit Ralph Barbagallo (www.flarb.com /www.ralphbarbagallo.com / @flarb) -/// Sourced from - http://forum.unity3d.com/threads/vr-cursor-possible-unity-4-6-gui-bug-or-is-it-me - -namespace UnityEngine.UI.Extensions -{ - [AddComponentMenu("UI/Extensions/VR Cursor")] - public class VRCursor : MonoBehaviour - { - public float xSens; - public float ySens; - - private Collider currentCollider; - - // Update is called once per frame - void Update() - { - Vector3 thisPosition; - - thisPosition.x = UIExtensionsInputManager.MousePosition.x * xSens; - thisPosition.y = UIExtensionsInputManager.MousePosition.y * ySens - 1; - thisPosition.z = transform.position.z; - - transform.position = thisPosition; - - VRInputModule.cursorPosition = transform.position; - - if (UIExtensionsInputManager.GetMouseButtonDown(0) && currentCollider) - { - VRInputModule.PointerSubmit(currentCollider.gameObject); - } - - } - - void OnTriggerEnter(Collider other) - { - //print("OnTriggerEnter other " + other.gameObject); - VRInputModule.PointerEnter(other.gameObject); - currentCollider = other; - } - - void OnTriggerExit(Collider other) - { - //print("OnTriggerExit other " + other.gameObject); - VRInputModule.PointerExit(other.gameObject); - currentCollider = null; - } - } -} \ No newline at end of file diff --git a/Runtime/Scripts/VR Extensions/VRCursor.cs.meta b/Runtime/Scripts/VR Extensions/VRCursor.cs.meta deleted file mode 100644 index f4fa883..0000000 --- a/Runtime/Scripts/VR Extensions/VRCursor.cs.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 3d7a94ee2faf9f04696882b3a2cbf035 -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: diff --git a/Runtime/Scripts/VR Extensions/VRInputModule.cs b/Runtime/Scripts/VR Extensions/VRInputModule.cs deleted file mode 100644 index 25a1c86..0000000 --- a/Runtime/Scripts/VR Extensions/VRInputModule.cs +++ /dev/null @@ -1,69 +0,0 @@ -/// Credit Ralph Barbagallo (www.flarb.com /www.ralphbarbagallo.com / @flarb) -/// Sourced from - http://forum.unity3d.com/threads/vr-cursor-possible-unity-4-6-gui-bug-or-is-it-me -/// Fix supplied by - http://forum.unity3d.com/threads/vr-cursor-possible-unity-4-6-gui-bug-or-is-it-me.296934/ - -using UnityEngine.EventSystems; -namespace UnityEngine.UI.Extensions -{ - [AddComponentMenu("Event/VR Input Module")] - public class VRInputModule : BaseInputModule - { - public static GameObject targetObject; - - static VRInputModule _singleton; - - private static bool mouseClicked; - public static Vector3 cursorPosition; - - protected override void Awake() - { - _singleton = this; - } - - public override void Process() - { - if (targetObject == null) - { - mouseClicked = false; - return; - } - } - - public static void PointerSubmit(GameObject obj) - { - targetObject = obj; - mouseClicked = true; - if (mouseClicked) - { - //BaseEventData data = GetBaseEventData(); //Original from Process(). Can't be called here so is replaced by the next line: - BaseEventData data = new BaseEventData(_singleton.eventSystem) - { - selectedObject = targetObject - }; - ExecuteEvents.Execute(targetObject, data, ExecuteEvents.submitHandler); - print("clicked " + targetObject.name); - mouseClicked = false; - } - } - - public static void PointerExit(GameObject obj) - { - print("PointerExit " + obj.name); - PointerEventData pEvent = new PointerEventData(_singleton.eventSystem); - ExecuteEvents.Execute(obj, pEvent, ExecuteEvents.pointerExitHandler); - ExecuteEvents.Execute(obj, pEvent, ExecuteEvents.deselectHandler); //This fixes the problem - } - - public static void PointerEnter(GameObject obj) - { - print("PointerEnter " + obj.name); - PointerEventData pEvent = new PointerEventData(_singleton.eventSystem) - { - pointerEnter = obj - }; - RaycastResult rcr = new RaycastResult() { worldPosition = cursorPosition }; - pEvent.pointerCurrentRaycast = rcr; - ExecuteEvents.Execute(obj, pEvent, ExecuteEvents.pointerEnterHandler); - } - } -} \ No newline at end of file diff --git a/Runtime/Scripts/VR Extensions/VRInputModule.cs.meta b/Runtime/Scripts/VR Extensions/VRInputModule.cs.meta deleted file mode 100644 index 42650a1..0000000 --- a/Runtime/Scripts/VR Extensions/VRInputModule.cs.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 303ab8dad3437bf46814373cfb86cc5d -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: