在ui上使用boxcollider的问题

  • 问题就是boxCollider不会随着UI缩放而缩放
  • 这个问题也很简单
  • 下面脚本可以实现随着recttransform来同步设置boxcollider
csharp 复制代码
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class BoxColliderAdjust : MonoBehaviour
{
    public bool AdjustBoxCollider = false;
    private BoxCollider2D boxCollider2D;
    private RectTransform gameObject;
    // Use this for initialization
    void Start()
    {
        gameObject = this.GetComponent<RectTransform>();
        boxCollider2D = this.GetComponent<BoxCollider2D>();
    }
    // Update is called once per frame
    void Update()
    {
        if (boxCollider2D == null)
        {
            Debug.Log("can't find collider");
            return;
        }
        else
        {
            if (AdjustBoxCollider == true)
            {
                boxCollider2D.offset = gameObject.rect.center;      //把box collider设置到物体的中心
                boxCollider2D.size = new Vector2(gameObject.rect.width, gameObject.rect.height);    //改变collider大小
            }
        }
    }
}
相关推荐
余多多_zZ19 小时前
鸿蒙学习手册(HarmonyOSNext_API16)_应用开发UI设计:Swiper
学习·ui·华为·harmonyos·鸿蒙系统
长流小哥21 小时前
可视化开发:用Qt实现Excel级动态柱状图
开发语言·c++·qt·ui
Invisible_He2 天前
iOS自定义collection view的page size(width/height)分页效果
ui·ios·swift·collection
草巾冒小子2 天前
element-ui图片查看器
前端·vue.js·ui
大树前端老司机2 天前
UI设计中的动画效果:如何让页面更生动?
ui
烧仙草奶茶3 天前
【cocos creator 3.x】3Dui创建,模型遮挡ui效果
ui·3d·cocos creator·cocos3d
wkm9563 天前
Unity程序嵌入Qt后点击UI按钮Button没有反应
qt·ui·unity
南部余额3 天前
playwright解决重复登录问题,通过pytest夹具自动读取storage_state用户状态信息
前端·爬虫·python·ui·pytest·pylawright
Antonio9154 天前
【Q&A】QT有哪些状态模式的设计?
qt·ui·状态模式
一只小灿灿5 天前
从 WPF 到 MAUI:跨平台 UI 开发的进化之路
ui·wpf