
Unity3D
claien
这个作者很懒,什么都没留下…
展开
-
Unity3D 常用库
JSON.NET:http://james.newtonking.com/jsonLitJSON: http://lbv.github.io/litjson/ProtoBuf - net:http://code.google.com/p/protobuf-net/原创 2014-06-18 23:20:50 · 3292 阅读 · 0 评论 -
unity3D常用工具小记
disunity 解压unity pak包 :java -jar disunity.jar extract "C:\aaaa\bbbb"原创 2015-01-29 19:33:47 · 737 阅读 · 0 评论 -
Unity Optimisation Basics Part 2
Unity Optimisation Basics Part 2Math is hardCurrently in JSD, the Seeking missiles are taking up WAY more cpu per frame than I would have anticipated. As much as 30% of the total cpu load pe转载 2015-01-13 14:48:10 · 753 阅读 · 0 评论 -
Unity Optimisation Basics Part 1
转自:http://stevehalliwell.com/unity-optimisation-basics-part-1/I recently decided to run the unity profiler over JSD and see what could be improved, this is just a quick review of my findings翻译 2015-01-13 14:46:00 · 748 阅读 · 0 评论 -
Unity Optimisation Basics Part 3
TagsWhich of the following should execute faster?那种执行更快呢?12345if(gameObject.tag == "Player")if(gameObject.tag == "Player".GetH翻译 2015-01-13 14:50:00 · 672 阅读 · 0 评论 -
UE4函数和属性说明符
Property Specifiers属性说明符When declaring properties, specifiers can be added to the declaration to control how the property behaves with various aspects of the engine and editor.当声明属性时,说明符可以被添加到该声明中转载 2015-10-23 11:02:19 · 8183 阅读 · 0 评论 -
Unity Static Batching
Unity5 的Static Batching 相对于Unity4 做了改进。 https://forum.unity.com/threads/regression-feature-not-bug-static-dynamic-batching-combining-v-buffers-but-not-draw-calls.360143/Static Batching 会减少Batchs的数量...原创 2018-08-09 13:54:38 · 2198 阅读 · 0 评论 -
CommandBuffer使用BuiltinRenderTextureType.CurrentActive注意事项
int screenCopyID = Shader.PropertyToID(“_ScreenCopyTexture”);buf.GetTemporaryRT (screenCopyID, cam.pixelWidth/2, cam.pixelHeight/2, 0, FilterMode.Bilinear); //结果错误 //buf.GetTemporaryRT(scr...原创 2018-08-09 16:56:57 · 2483 阅读 · 1 评论 -
Unity Performance
Unity Performancehttps://forum.unity.com/threads/onrenderimage-is-slow-when-msaa-is-on.427006/;有些机器在每个批次2500个顶点左右,FPS最高。https://forum.unity.com/threads/onrenderimage-is-slow-when-msaa-is-on.427006...原创 2018-10-08 18:33:53 · 799 阅读 · 1 评论