unity3d 尝试做一个Gorilla Tag移动系统

ct3nt3jp  于 2023-01-21  发布在  Go
关注(0)|答案(2)|浏览(127)

我试图使一个大猩猩标签移动系统,但我有一个错误:

GetDrag does not exist in the current context

我的代码只是一个简单的“float GetDrag()"。
我正在看这个视频教程:https://www.youtube.com/watch?v=5D2bN7xL5us&t=1s

dced5bon

dced5bon1#

做这个

float GetDrag()
     {
         Vector3 handVelocity = (target.localPosition - 
         _previousPosition) / Time.fixedDeltaTime;
         float drag = 1 / handVelocity.magnitude + 0.01f;
         drag = drag > 1 ? 1 : drag;
         drag = drag < 0.03f ? 0.03f : drag;
         _previousPosition = transform.position;
         return drag;
     }
1szpjjfi

1szpjjfi2#

Gorilla标签的创建者已经在MIT许可下开源了移动代码
https://github.com/Another-Axiom/GorillaLocomotion

相关问题