This commit is contained in:
CortexCore
2025-03-09 13:38:23 +08:00
parent 8261a458e2
commit 18239a5ae4
67 changed files with 8573 additions and 831 deletions

View File

@@ -0,0 +1,23 @@
using System.Collections;
using System.Collections.Generic;
using BITKit.FPS;
using UnityEngine;
namespace Net.Project.B.FPS
{
public class ScriptableSprint3 : ScriptableObject,ISprint3
{
[SerializeField] private Spring3 spring3;
public Vector3 Value
{
get => spring3.Value;
set => spring3.Value = value;
}
public void Tick(float deltaTime, Vector3 target)
{
spring3.Tick(deltaTime, target);
}
}
}