-
-
Notifications
You must be signed in to change notification settings - Fork 824
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use UI Flip #322
Labels
Comments
Hmm, indeed, among the v4 components, |
As a workaround, here is a provided code snippet: using Coffee.UIEffectInternal;
using UnityEngine;
using UnityEngine.EventSystems;
using UnityEngine.Serialization;
using UnityEngine.UI;
namespace Coffee.UIEffects
{
[DisallowMultipleComponent]
[RequireComponent(typeof(Graphic))]
public class UIFlip : UIBehaviour, IMeshModifier
{
[Tooltip("Flip horizontally.")]
[SerializeField]
private bool m_Horizontal = false;
[FormerlySerializedAs("m_Veritical")]
[Tooltip("Flip vertically.")]
[SerializeField]
private bool m_Vertical = false;
private Graphic _graphic;
public Graphic graphic => _graphic ? _graphic : _graphic = GetComponent<Graphic>();
/// <summary>
/// Gets or sets a value indicating whether this <see cref="Coffee.UIEffects.UIFlip"/> should be flipped horizontally.
/// </summary>
/// <value><c>true</c> if be flipped horizontally; otherwise, <c>false</c>.</value>
public bool horizontal
{
get => m_Horizontal;
set
{
if (m_Horizontal == value) return;
m_Horizontal = value;
SetVerticesDirty();
}
}
/// <summary>
/// Gets or sets a value indicating whether this <see cref="Coffee.UIEffects.UIFlip"/> should be flipped vertically.
/// </summary>
/// <value><c>true</c> if be flipped horizontally; otherwise, <c>false</c>.</value>
public bool vertical
{
get => m_Vertical;
set
{
if (m_Vertical == value) return;
m_Vertical = value;
SetVerticesDirty();
}
}
protected override void OnEnable()
{
SetVerticesDirty();
}
protected override void OnDisable()
{
SetVerticesDirty();
}
public void SetVerticesDirty()
{
if (graphic)
{
graphic.SetVerticesDirty();
}
}
public void ModifyMesh(Mesh mesh)
{
}
public void ModifyMesh(VertexHelper vh)
{
if (!isActiveAndEnabled || !graphic || !graphic.IsActive() || (!horizontal && !vertical)) return;
var count = vh.currentVertCount;
var vt = default(UIVertex);
for (var i = 0; i < count; i++)
{
vh.PopulateUIVertex(ref vt, i);
var pos = vt.position;
vt.position = new Vector3(m_Horizontal ? -pos.x : pos.x, m_Vertical ? -pos.y : pos.y);
vh.SetUIVertex(vt, i);
}
}
#if UNITY_EDITOR
protected override void OnValidate()
{
SetVerticesDirty();
}
#endif
}
} |
mob-sakai
added a commit
that referenced
this issue
Mar 13, 2025
mob-sakai
added a commit
that referenced
this issue
Mar 14, 2025
github-actions bot
pushed a commit
that referenced
this issue
Mar 28, 2025
# [5.6.0](5.5.3...5.6.0) (2025-03-28) ### Bug Fixes * fix edge detection ([9462170](9462170)) * fix project settings icon ([202601c](202601c)) * the strength of ColorGlow, TransitionColorGlow, and ShadowColorGlow now changes according to intensity ([aa4ec8d](aa4ec8d)), closes [#316](#316) * UIEffect with TextMeshPro SubMeshUI appears black in the editor when saving assets ([de91871](de91871)) ### Features * `TransitionAutoPlaySpeed`, `TransitionTexSpeed`, and `EdgeShinyAutoPlaySpeed` are previewed only when the object is selected in edit mode ([952a94f](952a94f)), closes [#319](#319) * add 'Flip' feature ([def49c3](def49c3)) * add `Detail Filter` feature ([3e2c5c1](3e2c5c1)) * add `EdgeColorGlow` option ([53db1e6](53db1e6)) * add `onChangeRate` event for UIEffectTweener ([8ad57c8](8ad57c8)), closes [#321](#321) * add `TransitionTexSpeed` option ([6b8dc5e](6b8dc5e)) * add a tool that automatically fixes shaders when 'TextMeshPro Essential Resources' are located in a non-default path ([8388d59](8388d59)) * add built-in presets ([3db94e0](3db94e0)) * add shaders for TextMeshPro Overlay/SSD ([51cd6d8](51cd6d8)) * Allow specifying a preset as the target for `UIEffectReplica` ([cb0e8d2](cb0e8d2)) * custom transform for transition and gradation ([045db9c](045db9c)) * expose color subfields as float-type public properties ([396d06f](396d06f)), closes [#321](#321) * load presets partially and append to existing instance ([6542543](6542543)) * separate reverse curve for UIEffectTweener ([2540b75](2540b75)), closes [#312](#312) * support `SoftMaskForUGUI ` package with `UIEffect` ([65457e2](65457e2)), closes [#270](#270) * support UIFlip as v4 compatible component ([e965b9e](e965b9e)), closes [#322](#322) * update demo sample ([abc9a41](abc9a41)), closes [#318](#318) [#320](#320)
🎉 This issue has been resolved in version 5.6.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
please help me!
How to use UI Flip in UI Effect v5?
The text was updated successfully, but these errors were encountered: