该项目是使用Unity DOTS 实现的经典 Pong 游戏的简单实现。
您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

25 行
590 B

using Unity.Entities;
using Unity.Jobs;
using Unity.Mathematics;
using Unity.Physics;
public class IncreaseVelocityOverTimeSystem : JobComponentSystem
{
protected override JobHandle OnUpdate(JobHandle inputDeps)
{
float deltaTime = Time.DeltaTime;
Entities
.ForEach((ref SpeedIncreaseOverTimeData data, ref PhysicsVelocity vel) =>
{
var modifier = new float2(data.increasePerSecond * deltaTime);
float2 newVel = vel.Linear.xy;
newVel += math.lerp(-modifier, modifier, math.sign(newVel));
vel.Linear.xy = newVel;
}).Run();
return inputDeps;
}
}