PushSettings.cs 417 B

1234567891011121314151617181920
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace DamageNumbersPro
  5. {
  6. [System.Serializable]
  7. public struct PushSettings
  8. {
  9. public PushSettings(float customDefault)
  10. {
  11. radius = 4f;
  12. pushOffset = 0.8f;
  13. }
  14. [Header("Main:")]
  15. public float radius;
  16. public float pushOffset;
  17. }
  18. }