Unity3D实现扭动挤压浏览效果

作者:即步 时间:2022-04-23 22:23:16 

最近的项目中,想做到一种能够吸引眼球的一种角色选择浏览效果

Demo源码:点击打开链接

最终实现了下按如下图这么一种浏览效果:

Unity3D实现扭动挤压浏览效果

效果图一

Unity3D实现扭动挤压浏览效果

效果图二

可能要实现这么一种效果用动画插件会很快,但总感觉有点大材小用
这里我向大家分享一个极简方式来实现这么一种效果

目录结构如下

其中Items有4个Image子节点

Unity3D实现扭动挤压浏览效果

在父节点Items下添加如下图横向布局组件

Unity3D实现扭动挤压浏览效果

在其4个Image子节点下添加如下图布局元素组件

Unity3D实现扭动挤压浏览效果

完成这些步骤后接下来就是代码实现了
在Items添加如下脚本组件


using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;

public class Items : MonoBehaviour
{
public List<GameObject> items = new List<GameObject>();

//缩放时间
public float time = 1.3f;

//原先大小
public Vector2 oldSize;

//放大缩小速度
public float speed;

private void Start()
{
for (int i = 0; i < items.Count; i++)
{
EventTriggerListener.GetComponent(items[i]).onEnter = OnMouseEnter;
EventTriggerListener.GetComponent(items[i]).onExit = OnMouseExit;
}
}

void OnMouseEnter(GameObject go)
{
EventTriggerListener.GetComponent(go).UpdateSize(oldSize * time, speed);
}

void OnMouseExit(GameObject go)
{
EventTriggerListener.GetComponent(go).UpdateSize(oldSize, speed);
}
}

在其4个子节点下添加如下脚本组件


using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.EventSystems;
using UnityEngine.UI;

[RequireComponent(typeof(LayoutElement))]
public class EventTriggerListener : EventTrigger
{
public delegate void VoidDelegate(GameObject obj);
//点击
public VoidDelegate onClick;
//鼠标按下
public VoidDelegate onDown;
//鼠标抬起
public VoidDelegate onUp;
//鼠标移入
public VoidDelegate onEnter;
//鼠标移出
public VoidDelegate onExit;

private Vector2 currentSize;
private Vector2 targetSize;
private float speed = 4.0f;

public static EventTriggerListener GetComponent(GameObject obj)
{
EventTriggerListener listener = obj.GetComponent<EventTriggerListener>();
if (listener == null)
{
listener = obj.AddComponent<EventTriggerListener>();
}

return listener;
}

public override void OnPointerClick(PointerEventData eventData)
{
if (onClick != null)
{
onClick(gameObject);
}
}
public override void OnPointerDown(PointerEventData eventData)
{
if (onDown != null) onDown(gameObject);
}
public override void OnPointerUp(PointerEventData eventData)
{
if (onUp != null) onUp(gameObject);
}
public override void OnPointerEnter(PointerEventData eventData)
{
if (onEnter != null) onEnter(gameObject);
}
public override void OnPointerExit(PointerEventData eventData)
{
if (onExit != null) onExit(gameObject);
}

private void Start()
{
targetSize = currentSize = new Vector2(this.GetComponent<LayoutElement>().preferredWidth, this.GetComponent<LayoutElement>().preferredHeight);
}

private void Update()
{
if (currentSize != targetSize)
{
currentSize = Vector2.Lerp(currentSize, targetSize, Time.deltaTime * speed);
if (Vector2.Distance(currentSize, targetSize) <= 0.01)
{
currentSize = targetSize;
}

this.GetComponent<LayoutElement>().preferredWidth = currentSize.x;
this.GetComponent<LayoutElement>().preferredHeight = currentSize.y;
}
}

public void UpdateSize(Vector2 size,float speed)
{
this.targetSize = size;
this.speed = speed;
}
}

脚本挂载上去后,在Item下按如下图方式设值

Unity3D实现扭动挤压浏览效果

可以按自己喜好调整数值。

来源:https://blog.csdn.net/qq_33747722/article/details/74853681

标签:Unity3D,扭动,挤压
0
投稿

猜你喜欢

  • springboot2.x整合tkmapper的示例代码

    2021-09-19 11:56:59
  • java实现将数字转换成人民币大写

    2023-08-11 05:07:29
  • C++实现String类的方法详解

    2023-04-27 08:49:27
  • MybatisPlus使用@TableId主键id自增长无效的解决

    2023-01-30 15:59:41
  • 高并发下如何避免重复数据产生技巧

    2022-04-17 07:08:57
  • Java Web学习之Cookie和Session的深入理解

    2022-10-28 14:47:10
  • .NET实现:将EXE设置开机自动启动

    2022-02-25 05:49:25
  • 实例详解Android解决按钮重复点击问题

    2023-10-16 09:10:12
  • 教你用Java在个人电脑上实现微信扫码支付

    2023-07-22 20:52:15
  • java判断http地址是否连通(示例代码)

    2023-08-05 03:24:05
  • Java面向接口编程之简单工厂模式示例

    2021-07-14 21:40:27
  • Java ConcurrentHashMap的使用示例

    2023-02-04 09:04:29
  • Spring框架初始化解析

    2021-06-09 16:46:59
  • .NET单点登陆的实现方法及思路

    2023-06-10 10:13:53
  • java解析XML Node与Element的区别(推荐)

    2021-11-12 18:32:13
  • 用C#将图片保存至Oracle BLOB字段中的方法

    2023-06-12 01:29:16
  • Android编程中自定义dialog用法实例

    2023-05-10 07:21:37
  • Java类的继承实例详解(动力节点Java学院整理)

    2023-01-28 13:19:31
  • C#实现加密的几种方法介绍

    2022-12-12 22:38:00
  • Java 中HttpURLConnection附件上传的实例详解

    2022-05-26 13:54:39
  • asp之家 软件编程 m.aspxhome.com