美文网首页
Unity内存优化方案集合(转)

Unity内存优化方案集合(转)

作者: 晓龙酱 | 来源:发表于2017-09-15 19:58 被阅读142次

https://github.com/mc-gulu/dev-awesomenesses/blob/master/unity-gc-cheatsheet-references.md


Unity GC Cheatsheet References
Unity GC CheatsheetDetails
References

官方及第三方参考 (En)
Unity Official (5.5) Optimizing garbage collection in Unity games
2015-07-21 (Megan Hughes) Unity Garbage Collection Tips and Tricks
2015-07-31 (Rich Geldreich) Lessons Learned While Fixing Memory Leaks in our First Unity Title
2015-04-30 (Robert01) C# memory and performance tips for Unity
2015-08-07 (Robert02) C# performance tips for Unity, part 2: structs and enums
2016-01-19 Reducing memory allocations to avoid Garbage Collection
2013-11-09 (Wendelin Reich) C# Memory Management for Unity Developers(part 1 of 3)
(part 2 of 3)
(part 3 of 3)
(cn ver.) Unity开发者的C#内存管理(上篇) by 易山松
(cn ver.) Unity开发者的C#内存管理(中篇) by 易山松

(stackexchange) How should I account for the GC when building games with Unity?

侑虎 (UWA)
性能优化,进无止境-内存篇(上)
性能优化,进无止境---内存篇(下)
Unity内存优化的“填坑回忆录”

腾讯质量开放平台 (WeTest)
内存是手游的硬伤——Unity游戏Mono内存管理及泄漏
深入浅出再谈Unity内存泄漏
手游内存占用过高?如何快速定位手游内存问题

第三方内存工具
dotMemory - JetBrains
TMM - Tencent tMem Monitor
ANTS Memory Profiler

知乎问答
unity在ios平台下内存的优化?
Unity游戏编程中如何避免runtime动态alloc内存?

调查和诊断过程
U3D项目内存优化记 by 凯丁
Curious Case of Slow Texture Importing, and xperf

其他
Unity 3D中的内存管理 by 王巍 (@onevcat)
U3D内存优化原则 by ywjun
U3d内存优化(一)之UILabel使用String的问题 by ywjun
U3d内存优化(二)之Dictonary by ywjun
深入浅出聊优化:从Draw Calls到GC by jiadong chen
unity3d优化总结篇 by pizi0475

相关文章

  • Unity内存优化方案集合(转)

    https://github.com/mc-gulu/dev-awesomenesses/blob/master/...

  • 2. 托管内存

    对于Unity内存管理而言,需要理解托管堆。对于如何分析托管内存和如何优化内存,可以参见Unity优化中的理解托管...

  • Unity与Android交互方案

    Unity与Android交互方案优化版Unity与Android交互方案优化版续:使用自定义Activity【U...

  • [Unity优化] Unity内存优化

    一、内存使用 Q1:在Unity的内存管理机制中, Reserved Total 和 Used Total之间的关...

  • 内存优化

    内存的优化:Unity中的内存种类实际上Unity游戏使用的内存一共有三种:程序代码、托管堆(Managed He...

  • unity内存优化

    常见判断准则内存阈值关注---ManagedHeap.UsedSize建议不超过20M内存阈值关注---总体Mon...

  • unity内存优化

    一代码优化 1.foreach 不能频繁调用,容易触及堆上线,导致GC过早触发,出现卡顿现象,会产生GC Allo...

  • unity内存优化

    unity的内存优化主要集中在一下三块: www加载资源管理 美术资源管理 UI功能管理 www加载资源管理 原文...

  • Unity 3D 游戏优化

    Unity优化是一个很大的概念,我们优化时需要注意三个方面:CPU优化,GPU优化,内存优化. CPU方面的优化:...

  • Unity3D内存释放 (转)

    最近网友通过网站搜索Unity3D在手机及其他平台下占用内存太大. 这里写下关于unity3d对于内存的管理与优化...

网友评论

      本文标题:Unity内存优化方案集合(转)

      本文链接:https://www.haomeiwen.com/subject/mcsesxtx.html