• 大小: 11.85MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-06-18
  • 语言: C#
  • 标签: NGUI  

资源简介

2018能用UI组件。NGUI是严格遵循KISS原则并用C#编写的Unity(适用于专业版和免费版)插件,提供强大的UI系统和事件通知框架。其代码简洁,多数类少于200行代码。

资源截图

代码片段和文件信息

using UnityEngine;
using UnityEditor;
using System.Collections.Generic;

/// 
/// Inspector class used to edit Inventory Databases.
/// 


[CustomEditor(typeof(InvDatabase))]
public class InvDatabaseInspector : Editor
{
static int mIndex = 0;

bool mConfirmDelete = false;

/// 
/// Draw an enlarged sprite within the specified texture atlas.
/// 


public Rect DrawSprite (Texture2D tex Rect sprite Material mat) { return DrawSprite(tex sprite mat true 0); }

/// 
/// Draw an enlarged sprite within the specified texture atlas.
/// 


public Rect DrawSprite (Texture2D tex Rect sprite Material mat bool addPadding)
{
return DrawSprite(tex sprite mat addPadding 0);
}

/// 
/// Draw an enlarged sprite within the specified texture atlas.
/// 


public Rect DrawSprite (Texture2D tex Rect sprite Material mat bool addPadding int maxSize)
{
float paddingX = addPadding ? 4f / tex.width : 0f;
float paddingY = addPadding ? 4f / tex.height : 0f;
float ratio = (sprite.height + paddingY) / (sprite.width + paddingX);

ratio *= (float)tex.height / tex.width;

// Draw the checkered background
Color c = GUI.color;
Rect rect = NGUIEditorTools.DrawBackground(tex ratio);
GUI.color = c;

if (maxSize > 0)
{
float dim = maxSize / Mathf.Max(rect.width rect.height);
rect.width *= dim;
rect.height *= dim;
}

// We only want to draw into this rectangle
if (Event.current.type == EventType.Repaint)
{
if (mat == null)
{
GUI.DrawTextureWithTexCoords(rect tex sprite);
}
else
{
// NOTE: DrawPreviewTexture doesn‘t seem to support BeginGroup-based clipping
// when a custom material is specified. It seems to be a bug in Unity.
// Passing ‘null‘ for the material or omitting the parameter clips as expected.
UnityEditor.EditorGUI.DrawPreviewTexture(sprite tex mat);
//UnityEditor.EditorGUI.DrawPreviewTexture(drawRect tex);
//GUI.DrawTexture(drawRect tex);
}
rect = new Rect(sprite.x + rect.x sprite.y + rect.y sprite.width sprite.height);
}
return rect;
}

/// 
/// Helper function that sets the index to the index of the specified item.
/// 


public static void SelectIndex (InvDatabase db InvbaseItem item)
{
mIndex = 0;

foreach (InvbaseItem i in db.items)
{
if (i == item) break;
++mIndex;
}
}

/// 
/// Draw the inspector widget.
/// 


public override void OnInspectorGUI ()
{
NGUIEditorTools.SetLabelWidth(80f);
InvDatabase db = target as InvDatabase;
NGUIEditorTools.DrawSeparator();

InvbaseItem item = null;

if (db.items == null || db.items.Count == 0)
{
mIndex = 0;
}
else
{
mIndex = Mathf.Clamp(mIndex 0 db.items.Count - 1);
item = db.items[mIndex];
}

if (mConfirmDelete)
{
// Show the confirmation dialog
GUILayout.Label(“Are you sure you want to delete ‘“ + item.name + “‘?“);
NGUI

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2019-02-11 16:22  NGUI\
     目录           0  2019-02-11 16:22  NGUI\Editor\
     目录           0  2019-02-11 16:22  NGUI\Editor\Preview\
     文件       15578  2018-06-29 08:14  NGUI\Editor\Preview\Control - Background.png
     文件         955  2018-06-29 08:14  NGUI\Editor\Preview\Control - Background.png.meta
     文件       18984  2018-06-29 08:14  NGUI\Editor\Preview\Control - Colored Button.png
     文件         955  2018-06-29 08:14  NGUI\Editor\Preview\Control - Colored Button.png.meta
     文件       18520  2018-06-29 08:14  NGUI\Editor\Preview\Control - Colored Checkbox.png
     文件         955  2018-06-29 08:14  NGUI\Editor\Preview\Control - Colored Checkbox.png.meta
     文件        8328  2018-06-29 08:14  NGUI\Editor\Preview\Control - Colored Horizontal Scroll Bar.png
     文件         955  2018-06-29 08:14  NGUI\Editor\Preview\Control - Colored Horizontal Scroll Bar.png.meta
     文件        4875  2018-06-29 08:15  NGUI\Editor\Preview\Control - Colored Popup List.png
     文件         955  2018-06-29 08:15  NGUI\Editor\Preview\Control - Colored Popup List.png.meta
     文件       13110  2018-06-29 08:13  NGUI\Editor\Preview\Control - Colored Progress Bar.png
     文件         955  2018-06-29 08:13  NGUI\Editor\Preview\Control - Colored Progress Bar.png.meta
     文件        6255  2018-06-29 08:14  NGUI\Editor\Preview\Control - Colored Slider.png
     文件         955  2018-06-29 08:14  NGUI\Editor\Preview\Control - Colored Slider.png.meta
     文件        8276  2018-06-29 08:14  NGUI\Editor\Preview\Control - Colored Vertical Scroll Bar.png
     文件         955  2018-06-29 08:14  NGUI\Editor\Preview\Control - Colored Vertical Scroll Bar.png.meta
     文件        6007  2018-06-29 08:16  NGUI\Editor\Preview\Control - Simple Button.png
     文件         955  2018-06-29 08:16  NGUI\Editor\Preview\Control - Simple Button.png.meta
     文件       16145  2018-06-29 08:16  NGUI\Editor\Preview\Control - Simple Checkbox.png
     文件         955  2018-06-29 08:16  NGUI\Editor\Preview\Control - Simple Checkbox.png.meta
     文件        3112  2018-06-29 08:14  NGUI\Editor\Preview\Control - Simple Horizontal Scroll Bar.png
     文件         955  2018-06-29 08:14  NGUI\Editor\Preview\Control - Simple Horizontal Scroll Bar.png.meta
     文件        5876  2018-06-29 08:13  NGUI\Editor\Preview\Control - Simple Horizontal Slider.png
     文件         955  2018-06-29 08:13  NGUI\Editor\Preview\Control - Simple Horizontal Slider.png.meta
     文件        8570  2018-06-29 08:14  NGUI\Editor\Preview\Control - Simple Input Field.png
     文件         955  2018-06-29 08:14  NGUI\Editor\Preview\Control - Simple Input Field.png.meta
     文件        7689  2018-06-29 08:13  NGUI\Editor\Preview\Control - Simple Popup List.png
     文件         955  2018-06-29 08:13  NGUI\Editor\Preview\Control - Simple Popup List.png.meta
............此处省略820个文件信息

评论

共有 条评论