您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
23 行
546 B
23 行
546 B
using Unity.Collections;
|
|
using UnityEngine.Jobs;
|
|
using UniVRM10.FastSpringBones.Blittables;
|
|
#if ENABLE_SPRINGBONE_BURST
|
|
using Unity.Burst;
|
|
#endif
|
|
|
|
namespace UniVRM10.FastSpringBones.System
|
|
{
|
|
#if ENABLE_SPRINGBONE_BURST
|
|
[BurstCompile]
|
|
#endif
|
|
public struct PushTransformJob : IJobParallelForTransform
|
|
{
|
|
[ReadOnly]
|
|
public NativeArray<BlittableTransform> Transforms;
|
|
|
|
public void Execute(int index, TransformAccess transform)
|
|
{
|
|
transform.rotation = Transforms[index].rotation;
|
|
}
|
|
}
|
|
}
|