zjhxyz / zjhxyz.github.io

0 stars 0 forks source link

Unity Burst加速直接调用代码示例 | Heerozh's Blog #13

Open zjhxyz opened 3 weeks ago

zjhxyz commented 3 weeks ago

https://heerozh.com/post/unity-burst-jia-su-dai-ma-shi-li/

Burst文档和示例较少,除了Job方式调用外,也是可以直接调用的。 以下是对球体的所有顶点生成uv的示例代码,用burst大概加速50%。

using System.Runtime.CompilerServices; using Uni...