Cargando…

Unity 5 game optimization : master performance optimization for Unity3D applications with tips and techniques that cover every aspect of Unity3D Engine /

Master performance optimization for Unity3D applications with tips and techniques that cover every aspect of the Unity3D Engine About This Book Optimize CPU cycles, memory usage, and GPU throughput for any Unity3D application Master optimization techniques across all Unity Engine features including...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Dickinson, Chris (Autor)
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Birmingham, UK : Packt Publishing, 2015.
Colección:Community experience distilled.
Temas:
Acceso en línea:Texto completo
Texto completo

MARC

LEADER 00000cam a2200000Ii 4500
001 EBSCO_ocn930868475
003 OCoLC
005 20231017213018.0
006 m o d
007 cr unu||||||||
008 151203s2015 enka o 001 0 eng d
040 |a UMI  |b eng  |e rda  |e pn  |c UMI  |d N$T  |d IDEBK  |d YDXCP  |d EBLCP  |d COO  |d OCLCF  |d DEBSZ  |d DEBBG  |d IDB  |d OCLCQ  |d MERUC  |d OCLCQ  |d OCLCO  |d OCL  |d CEF  |d OCLCQ  |d OCLCO  |d UAB  |d RDF  |d OCLCO  |d OCLCQ  |d OCLCA  |d OCL  |d OCLCA  |d QGK  |d OCLCO  |d OCLCA 
019 |a 928997215  |a 1259157629 
020 |a 9781785888458  |q (electronic bk.) 
020 |a 1785888455  |q (electronic bk.) 
020 |a 1785884581 
020 |a 9781785884580 
020 |z 9781785884580 
024 3 |a 9781785884580 
029 1 |a CHNEW  |b 000893897 
029 1 |a CHVBK  |b 374530548 
029 1 |a DEBBG  |b BV043627549 
029 1 |a DEBBG  |b BV043968098 
029 1 |a DEBSZ  |b 461173204 
029 1 |a DEBSZ  |b 485785854 
029 1 |a GBVCP  |b 882847783 
035 |a (OCoLC)930868475  |z (OCoLC)928997215  |z (OCoLC)1259157629 
037 |a CL0500000679  |b Safari Books Online 
050 4 |a QA76.76.C672 
072 7 |a GAM  |x 001000  |2 bisacsh 
082 0 4 |a 794.8  |2 23 
049 |a UAMI 
100 1 |a Dickinson, Chris,  |e author. 
245 1 0 |a Unity 5 game optimization :  |b master performance optimization for Unity3D applications with tips and techniques that cover every aspect of Unity3D Engine /  |c Chris Dickinson. 
246 3 0 |a Master performance optimization for Unity3D applications with tips and techniques that cover every aspect of Unity3D Engine 
246 3 |a Unity five game optimization 
264 1 |a Birmingham, UK :  |b Packt Publishing,  |c 2015. 
300 |a 1 online resource (1 volume) :  |b illustrations. 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
347 |a text file 
490 1 |a Community experience distilled 
500 |a Includes index. 
588 0 |a Online resource; title from cover page (Safari, viewed December 1, 2015). 
505 0 |a Cover; Copyright; Credits; About the Author; Acknowledgments; About the Reviewers; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Detecting Performance Issues; The Unity Profiler; Launching the Profiler; Editor or standalone instances; Editor profiling; The Unity Webplayer connection; Remote connection to an iOS device; Remote connection to an Android device; The Profiler window; Controls; Best approaches to performance analysis; Verifying script presence; Verifying script count; Minimizing ongoing code changes; Minimizing internal distractions; Minimizing external distractions 
505 8 |a Targeted profiling of code segmentsProfiler script control; Custom CPU Profiling; Saving and loading Profiler data; Saving Profiler data; Loading Profiler data; Final thoughts on Profiling and Analysis; Understanding the Profiler; Reducing noise; Focusing on the issue; Summary; Chapter 2: Scripting Strategies; Cache Component references; Obtaining Components using the fastest method; Removing empty callback declarations; Avoiding the Find() and SendMessage() methods at runtime; Static classes; Singleton Components; Assigning references to pre-existing objects; A global messaging system 
505 8 |a A globally accessible objectRegistration; Message processing; Implementing the messaging system; Message queuing and processing; Implementing a custom message; Message registration; Message sending; Message cleanup; Wrapping up the messaging system; Disabling unused scripts and objects; Disabling objects by visibility; Disabling objects by distance; Consider using distance-squared over distance; Avoid retrieving string properties from GameObjects; Update, coroutines, and InvokeRepeating; Consider caching Transform changes; Faster GameObject null reference checks; Summary 
505 8 |a Chapter 3: The Benefits of BatchingDraw Calls; Materials and Shaders; Dynamic Batching; Vertex attributes; Uniform scaling; Dynamic Batching summary; Static Batching; The Static flag; Memory requirements; Material references; Static Batching caveats; Edit Mode debugging of Static Batching; Avoiding instantiating static meshes at runtime; Visibility and rendering; Static Batching summary; Summary; Chapter 4: Kickstart Your Art; Audio; Loading audio files; Profiling audio; Additional loading options; Encoding formats and quality levels; Audio performance enhancements 
505 8 |a Minimize active Audio Source countMinimize Audio Clip references; Enable Force to Mono for 3D sounds; Resample to lower frequencies; Consider all encoding formats; Beware of streaming; Apply Filter effects through Mixer groups to reduce duplication; Use ""WWW.audioClip"" responsibly; Consider Audio Module files for background music; Texture files; Compression formats; Texture performance enhancements; Reduce Texture file size; Use Mip Maps wisely; Manage resolution downscaling externally; Adjust Anisotropic Filtering levels; Consider Atlasing 
520 |a Master performance optimization for Unity3D applications with tips and techniques that cover every aspect of the Unity3D Engine About This Book Optimize CPU cycles, memory usage, and GPU throughput for any Unity3D application Master optimization techniques across all Unity Engine features including Scripting, Asset Management, Physics, Graphics Features, and Shaders A practical guide to exploring Unity Engine's many performance-enhancing methods Who This Book Is For This book is intended for intermediate and advanced Unity developers who have experience with most of Unity's feature-set, and who want to maximize the performance of their game. Familiarity with the C# language will be needed. What You Will Learn Use the Unity Profiler to find bottlenecks anywhere in our application, and discover how to resolve them Implement best-practices for C# scripting to avoid common pitfalls Develop a solid understanding of the rendering pipeline, and maximize its performance through reducing draw calls and avoiding fill rate bottlenecks Enhance shaders in a way that is accessible to most developers, optimizing them through subtle yet effective performance tweaks Keep our scenes as dynamic as possible by making the most of the Physics engine Organize, filter, and compress our art assets to maximize performance while maintaining high quality Pull back the veil on the Mono Framework and the C# Language to implement low-level enhancements that maximize memory usage and avoid garbage collection Get to know the best practices for project organization to save time through an improved workflow In Detail Competition within the gaming industry has become significantly fiercer in recent years with the adoption of game development frameworks such as Unity3D. Through its massive feature-set and ease-of-use, Unity helps put some of the best processing and rendering technology in the hands of hobbyists and professionals alike. This has led to an enormous explosion of talent, which has made it critical to ensure our games stand out from the crowd through a high level of quality. A good user experience is essential to create a solid product that our users will enjoy for many years to come. Nothing turns gamers away from a game faster than a poor user-experience. Input latency, slow rendering, broken physics, stutters, freezes, and crashes are among a gamer's worst nightmares and it's up to us as game developers to ensure this never happens. High performance does not need t... 
546 |a English. 
590 |a eBooks on EBSCOhost  |b EBSCO eBook Subscription Academic Collection - Worldwide 
590 |a O'Reilly  |b O'Reilly Online Learning: Academic/Public Library Edition 
630 0 0 |a Unity (Electronic resource) 
630 0 7 |a Unity (Electronic resource)  |2 fast 
650 0 |a Video games  |x Design. 
650 0 |a Video games  |x Programming. 
650 6 |a Jeux vidéo  |x Conception. 
650 6 |a Jeux vidéo  |x Programmation. 
650 7 |a GAMES  |x Board.  |2 bisacsh 
650 7 |a Computer games  |x Design  |2 fast 
650 7 |a Video games  |x Programming  |2 fast 
650 7 |a Video games  |x Design  |2 fast 
776 0 8 |i Erscheint auch als:  |n Druck-Ausgabe  |t Dickinson, Chris. Unity 5 Game Optimization 
830 0 |a Community experience distilled. 
856 4 0 |u https://ebsco.uam.elogim.com/login.aspx?direct=true&scope=site&db=nlebk&AN=1092626  |z Texto completo 
856 4 0 |u https://learning.oreilly.com/library/view/~/9781785884580/?ar  |z Texto completo 
938 |a EBL - Ebook Library  |b EBLB  |n EBL4191216 
938 |a EBSCOhost  |b EBSC  |n 1092626 
938 |a ProQuest MyiLibrary Digital eBook Collection  |b IDEB  |n cis33137650 
938 |a YBP Library Services  |b YANK  |n 12727837 
994 |a 92  |b IZTAP