Implement hand menu features

This commit is contained in:
2024-09-07 20:42:45 +02:00
parent f690fb53c8
commit 3357191134
621 changed files with 410674 additions and 3861 deletions

View File

@@ -0,0 +1,21 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace DamageNumbersPro
{
[System.Serializable]
public struct FollowSettings
{
public FollowSettings(float customDefault)
{
speed = 10;
drag = 0f;
}
[Tooltip("Speed at which target is followed.")]
public float speed;
[Tooltip("Decreases follow speed over time.")]
public float drag;
}
}