{{sellerTotalView > 1 ? __("sellers", {number: sellerTotalView}) : __("seller", {number: sellerTotalView}) }}, {{numTotalView > 1 ? __("items", {number: numTotalView}) : __("item", {number: numTotalView}) }}
free FREE

Change Your Zip Code

Inventory information and delivery speeds may vary for different locations.

Location History

{{email ? __('Got it!') : __('Restock Alert')}}

We will notify you by email when the item back in stock.

Cancel
Yami

Jingdong book

Unity 3D NGUI 实战教程

{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}

Unity 3D NGUI 实战教程

{{__(":people-members", {'people': item.limit_people_count})}} {{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ item.invalid_price }} {{ itemDiscount }}
Ends in
{{ itemCurrency }}{{ item.valid_price }}
{{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }}
{{ itemDiscount }}
{{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }} {{ itemCurrency }}{{ item.invalid_price }} {{itemDiscount}}
{{ itemCurrency }}{{ item.valid_price }}
Sale ends in
Sale will starts after Sale ends in
{{ getSeckillDesc(item.seckill_data) }}
{{ __( "Pay with Gift Card to get sale price: :itemCurrency:price", { 'itemCurrency' : itemCurrency, 'price' : (item.giftcard_price ? priceFormat(item.giftcard_price) : '0.00') } ) }} ({{ itemCurrency }}{{ priceFormat(item.giftcard_price / item.bundle_specification) }}/{{ item.unit }}) Details
Best before

Currently unavailable.

We don't know when or if this item will be back in stock.

Unavailable in your area.
Sold Out

Details

Full product details
Editer Recommend

国内第1本用NGUI开发游戏UI的实战教程。
《Unity3DNGUI实战教程》中包括了众多游戏UI设计实战知识,如UI动画、UI随屏幕自适应、跨平台制作UI、UI结构设计、UI代码的设计和优化、背包界面的制作等实战知识
为了解决读者的疑难问题,最后用一章归纳了NGUI常见疑难问题解答,以便读者遇到问题时可以随时参考。
《Unity3DNGUI实战教程》不仅讲了NGUI的基础,更是以项目实战为目的,书中涵盖了大量的项目实战中的经验之谈,这对于一个客户端程序员来说,不管他用什么引擎、用什么UI工具来开发UI系统,本书都能给他提供帮助,并不会过时。
中国排名第1的专业界面设计平台UI中国倾力推荐
中国专精于游戏视觉相关的设计分享网络平台GAMEUI倾力推荐
中国专业的游戏UI设计咨询机构iCON倾力推荐

Content Description

NGUI是专门针对Unity引擎、用C#语言编写的一套插件,它已经成为了目前世界上应用最广、最成熟的Unity制作UI的插件,完美地弥补了Unity引擎原生GUI系统和NewGUI系统的各种不足。程序员可以利用它提供的一整套UI框架和事件通知系统来进行自己项目的UI设计和制作。本书不仅讲解了必知必会的NGUI的基础知识,更是以项目实战为目的,涵盖了大量的项目实战中的经验之谈和技巧总结,用以帮助读者达到学以致用的目的。
《Unity 3D NGUI 实战教程》的主要内容:初识NGUI、UI开发的流程、NGUI强大优势、制作第1个UI图集、创建一个3DUI、查看和管理UI的深度、制作基础的UI控件、让UI动起来——UI动画、NGUI进阶、使用Panel管理面板、NGUI实战进阶、UI开发核心问题——UI随屏幕自适应、实战开发中UI资源制作标准、跨平台制作UI资源、UI结构设计、UI代码的设计和优化、项目案例实战分析、背包界面的制作等核心技术,最后用一章归纳了NGUI常见疑难问题,以便读者遇到问题时可以随时参考。
《Unity 3D NGUI 实战教程》适合新上手的Unity客户端程序员、需要做UI的Unity程序员、想自学Unity做独立游戏开发的人员,以及大专院校相关专业的师生学习用书和培训学校的教材。

Author Description

高雪峰,现在为游戏制作人,曾经担任游戏策划、主策划、Unity程序员等职位,开发过端游、页游、手游等游戏项目,带团队做过多个商业项目,对游戏的研发过程具有丰富的经验和实战技能。对NGUI有深入的研究,并且全部应用于项目实战,本书是作者多年实战经验的总结,定会给读者带来很多有益的实战启示。
Catalogue

第1章 初识NGUI
1.1 游戏UI开发介绍
1.1.1 什么是游戏UI
1.1.2 UI为何如此重要
1.1.3 UI开发的流程
1.1.4 UI开发的难点
1.2 什么是NGUI
1.2.1 NGUI插件介绍
1.2.2 NGUI的强大优势
第2章 NGUI基础
2.1 导入NGUI插件
2.1.1 NGUI版本介绍
2.1.2 NGUI的下载和购买
2.1.3 导入NGUI插件应用
2.1.4 导入常见问题
2.2 认识基本的UI资源
2.2.1 什么是UI精灵(Sprite)
2.2.2 什么是UI图集(Atlas)
2.2.3 什么是UI贴图(Texture)
2.2.4 什么是UI标签(Label)
2.2.5 什么是UI字体(Font)
2.3 制作第一个UI图集
2.3.1 学会解剖UI的资源结构
2.3.2 如何导入切好的美术资源
2.3.3 用Atlas Maker制作图集
2.4 制作第一个UI字体
2.4.1 为什么要制作UI字体
2.4.2 静态字体和动态字体
2.4.3 制作静态字体介绍
2.4.4 制作动态字体介绍
2.5 创建第一个UI
2.5.1 创建一个2D UI
2.5.2 创建一个3D UI
2.5.3 了解UIRoot、UIPanel和UICamera组件
2.6 2DUI和3DUI的工作原理
2.6.1 2DUI的工作原理
2.6.2 3DUI的工作原理
2.6.3 如何判断该选择哪一种UI
2.7 深度(Depth)概念
2.7.1 强化对深度的理解
2.7.2 小心相机的深度
第3章 核心组件
3.1 什么是UI控件
3.2 制作精灵(UISprite)
3.2.1 怎样判断是否应该使用精灵
3.2.2 创建精灵
3.2.3 Sprite组件的设置
3.3 制作标签(Label)
3.3.1 怎样判断是否应当使用标签
3.3.2 创建标签
3.3.3 Label的文字设置
3.4 制作UI纹理(UITexture)
3.4.1 什么情况下使用UITexture
3.4.2 创建纹理
3.4.3 纹理的设置
3.5 制作按钮(Button)
3.5.1 怎样判断应该使用按钮
3.5.2 创建按钮
3.5.3 核心组件BoxCollider
3.5.4 核心组件UIButton
3.5.5 制作按钮的放缩动画
3.5.6 制作按钮的偏移动画
3.5.7 制作按钮的旋转动画
3.5.8 添加按钮单击音效
3.5.9 任何事物都可以变成按钮,不仅仅是UI
3.6 制作进度条(UISlider)
3.6.1 怎样判断是否应当使用进度条
3.6.2 创建进度条
3.6.3 核心组件UISlider设置
3.6.4 进度条的BoxCollider说明
3.7 制作输入框(Input)
3.7.1 怎样判断是否应当使用输入框
3.7.2 创建输入框
3.7.3 核心组件Input设置
3.7.4 输入框使用的一些注意事项
3.8 制作滚动视图(ScrollView)
3.8.1 怎样判断是否应当使用滚动视图
3.8.2 创建滚动视图
3.8.3 滚动视图核心组件UIPanel
3.8.4 滚动视图核心组件UIScrollView
3.8.5 创建一个拖动条
3.8.6 拖动条说明
3.8.7 让视图内的内容可以被拖动
3.8.8 制作滚动视图时的注意事项
3.9 制作复选框(Toggle)
3.9.1 怎样判断是否应当使用复选框
3.9.2 创建复选框
3.9.3 复选框的核心组件UIToggle
3.10 制作下拉菜单(PopupList)
3.10.1 怎样判断是否应当使用下拉菜单
3.10.2 创建下拉菜单
3.10.3 显示当前选中的选项
3.10.4 下拉菜单核心组件PopupList
3.10.5 制作下拉菜单的注意事项
第4章 UI动画
4.1 常见的两种UI动画介绍
4.1.1 要区分UI动画和UI特效两个概念
4.1.2 关于Tween动画
4.1.3 关于Animation动画
4.2 渐隐渐现动画(透明度动画)
4.2.1 透明度动画的介绍和应用
4.2.2 使用透明度动画TweenAlpha
4.2.3 使用透明度动画的注意点
4.3 颜色变化动画(变色动画)
4.3.1 变色动画的介绍和应用
4.3.2 使用颜色动画TweenColor
4.3.3 使用颜色动画的注意点
4.4 位置变换动画(位移动画)
4.4.1 位移动画的介绍和应用
4.4.2 使用位移动画TweenPosition
4.4.3 使用位移动画的注意点
4.5 旋转变化动画(旋转动画)
4.5.1 旋转动画的介绍和应用
4.5.2 使用旋转动画TweenRotation
4.5.3 使用旋转动画的注意点
4.6 大小变化动画(放缩动画)
4.6.1 放缩动画的介绍和应用
4.6.2 使用放缩动画TweenScale
4.6.3 使用放缩动画的注意点
4.7 Tween动画总结
4.8 动画控制组件UIPlayTween
4.8.1 为什么要用UIPlayTween
4.8.2 动画核心组件UIPlayTween讲解
4.8.3 使用UIPlayTween的注意事项
4.9 动画控制组件UIPlayAnimation
4.9.1 为什么要用UIPlayAnimation
4.9.2 为UI添加Animation组件
4.9.3 动画核心组件UIPlayAnimation讲解
4.9.4 使用UIPlayAnimation注意事项
第5章 其他组件
5.1 使用Toggle制作页签
5.1.1 页签的工作原理
5.1.2 一个完整的页签界面
5.1.3 制作两个页签按钮
5.1.4 使用ToggleObjects来记录页签内容
5.1.5 制作页签注意事项
5.2 拖动摄像机来浏览超大界面
5.2.1 拖动相机功能的介绍和应用
5.2.2 核心原理和组件介绍
5.2.3 拖动相机浏览超大界面的注意事项
5.3 使用Grid自动排列UI
5.3.1 自动排列UI的应用
5.3.2 自动排列UI核心组件Grid介绍
5.4 使用DragObject直接拖动物体
5.5 让玩家通过拖动自由改变控件大小
5.6 制作序列帧精灵动画(SpriteAnimation)
5.6.1 什么是序列帧精灵动画
5.6.2 SpriteAnimation组件
第6章 NGUI实战进阶
6.1 UI开发核心问题--UI随屏幕自适应
6.1.1 屏幕分辨率对UI适配的影响
6.1.2 主流设备的屏幕分辨率
6.1.3 自适应核心组件Anchor的使用
6.1.4 使用Anchor的注意事项
6.1.5 正式开发UI之前必须明确的几个问题
6.2 UI元素的相对自适应
6.2.1 什么是UI元素的相对自适应
6.2.2 Anchors的介绍及使用
6.2.3 使用Anchors的范例:背景图的全屏适配
6.2.4 使用Anchors的注意事项
6.3 多摄像机同时协作运行
6.3.1 摄像的渲染层的概念
6.3.2 多摄像机协作的应用范围
6.3.3 如何创建多个UI摄像机
6.3.4 多摄像机协作的注意事项
6.4 巧用九宫格以减少UI资源量
6.4.1 项目安装包大小对项目的影响

Specifications

Brand Jingdong book
Brand Origin China

Disclaimer

Product packaging, specifications and price are subject to change without notice. All information about the products on our website is provided for information purposes only. Please always read labels, warnings and directions provided with the product before use.

View Full Terms of Use
Add to favorites
{{ $isZh ? coupon.coupon_name_sub : coupon.coupon_ename_sub | formatCurrency }}
{{__("Buy Directly")}} {{ itemCurrency }}{{ item.directly_price }}
Quantity
{{ quantity }}
{{ instockMsg }}
{{ limitText }}
{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}
Sold by JD@CHINA
Ship to
{{ __("Ship to United States only") }}
Free shipping over 69
Genuine guarantee

Added to Cart

Keep Shopping

More to Consider

{{ item.brand_name }}

{{ item.item_name }}

{{ item.currency }}{{ item.market_price }}

{{ item.currency }}{{ item.unit_price }}

{{ item.currency }}{{ item.unit_price }}

Coupons

{{ coupon.coupon_name_new | formatCurrency }}
Clip Clipped Over
{{ getCouponDescStr(coupon) }}
{{ coupon.use_time_desc }}
Expires soon {{ formatTime(coupon.use_end_time) }}

Share this item with friends

Cancel

Yami Gift Card

Get this exclusive deal when paying with gift card

Terms and Conditions

Gift card deals are special offers for selected products;

The gift card deals will automatically be activated if a customer uses gift card balance at check out and the balance is sufficient to pay for the total price of the shopping cart products with gift card deals;

You will not be able to activate the gift card deals if you choose other payment methods besides gift card. The products will be purchased at their normal prices;

If your account balance is not enough to pay for the products with gift card deals, you can choose to reload your gift card balance by clicking on the Reload button at either shopping cart page or check out page;

Products that have gift card deals can be recognized by a special symbol showing 'GC Deal';

For any additional questions or concerns, please contact our customer service;

Yamibuy reserves the right of final interpretation.

Sold by Yami

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

Yami is committed to provide our customers with a peace of mind when purchasing from us. Most items shipped from Yamibuy.com can be returned within 30 days of receipt of shipment (For Food, Beverages, Snacks, Dry Goods, Health supplements, Fresh Grocery and Perishables Goods, within 7 days of receipt of shipment due to damages or quality issues; To ensure that every customer receives safe and high-quality products, we do not provide refunds or returns for beauty products once they have been opened or used, except in the case of quality issues; Some products may have different policies or requirements associated with them, please see below for products under special categories, or contact Yami Customer Service for further assistance).
Thank you for your understanding and support.

Learn More

Sold by Yami

Terms and Conditions of Yami E-Gift Card

If you choose “Redeem automatically” as your delivery method, your gift card balance will be reload automatically after your order has been processed successfully;

If you choose “Send to Email”as your delivery method, the card number and CVV will be sent to the email address automatically;

Any user can use the card number and CVV to redeem the gift card, please keep your gift card information safely. If you have any trouble receiving email, please contact Yami customer service;

Yami gift card can be used to purchase both Yami owned or Marketplace products;

Yami gift card will never expire;

Yami gift card balance does not have to be used up at once;

All rights reserved by Yami.

Return Policy

Gift card that has already been consumed is non-refundable.

Sold by JD@CHINA

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Sold by JD@CHINA

Service Guarantee

Yami Cross-store Free Shipping over $69
Yami 30-days Return

Yami-China FC

Yami has a consolidation warehouse in China which collects multiple sellers’ packages and combines to one order. Our Yami consolidation warehouse will directly ship the packages to your door. Cross-store free shipping over $69.

Return Policy

You may return products within 30 days upon receiving the products. Sellers take responsibilities for any wrong shipment or missing items. Packing needs to be unopened for any other than quality issues return. We promise to pack carefully, but because goods are taking long journey to destinations, simple damages to packaging may occur. Any damages not causing internal goods quality problems are not allowed to return. If you open the package and any quality problem is found, please contact customer service within three days after receipt of goods.

Shipping Information

Yami Consolidation Service Shipping Fee $9.99(Free shipping over $69)

Sellers in China will ship their orders within 1-2 business days once the order is placed. Packages are sent to our consolidation warehouse in China and combined there. Our Yami consolidation warehouse will directly ship the packages to you via UPS. The average time for UPS to ship from China to the United States is about 10 working days and it can be traced using the tracking number. Due to the pandemic, the delivery time may be delayed by about 5 days. The package needs to be signed by the guest. If the receipt is not signed, the customer shall bear the risk of loss of the package.

Sold by JD@CHINA

Service Guarantee

Free shipping over 69
Genuine guarantee

Shipping

Yami Consolidated Shipping $9.99(Free shipping over $69)


Seller will ship the orders within 1-2 business days. The logistics time limit is expected to be 7-15 working days. In case of customs clearance, the delivery time will be extended by 3-7 days. The final receipt date is subject to the information of the postal company.

Yami Points information

All items are excluding from any promotion or points events on Yamibuy.com

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Yami

Download the Yami App

Back Top

Recommended for You

About the brand

Jingdong book

为您推荐

Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折

Reviews{{'('+ commentList.posts_count + ')'}}

Have your say. Be the first to help other guests.

Write a review
{{ totalRating }} Write a review
  • {{i}} star

    {{i}} stars

    {{ parseInt(commentRatingList[i]) }}%

Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}
Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}

No related comment~

Review

Yami Yami

{{ showTranslate(commentDetails) }}Show Less

{{ strLimit(commentDetails,800) }}Show more

Show Original

{{ commentDetails.content }}

Yami
Show All

{{ formatTime(commentDetails.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ commentDetails.likes_count }} {{ commentDetails.likes_count }} {{ commentDetails.reply_count }} {{commentDetails.in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Comments{{'(' + replyList.length + ')'}}

Yami Yami

{{ showTranslate(reply) }}Show Less

{{ strLimit(reply,800) }}Show more

Show Original

{{ reply.reply_content }}

{{ formatTime(reply.reply_in_dtm) }}

{{ reply.reply_likes_count }} {{ reply.reply_likes_count }} {{ reply.reply_reply_count }} {{reply.reply_in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Cancel

That’s all the comments so far!

Write a review
How would you rate this item?

Please add your comment.

  • A nice nickname will make your comments more popular!
  • The nickname in your account will be changed to the same as here.
Thanks for your review
Our community rely on great reviews like yours to find the best of Asia.

Report

If you find this content inappropriate and think it should be removed from the Yami.com site, let us know please.

Cancel

Are you sure to delete your review?

Cancel

You’ve Recently Viewed

About the brand

Jingdong book