DamageNumberMesh.cs 962 B

1234567891011121314151617181920212223242526272829
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using UnityEngine.Serialization;
  5. using DamageNumbersPro.Internal;
  6. using TMPro;
  7. namespace DamageNumbersPro
  8. {
  9. [DisallowMultipleComponent]
  10. public class DamageNumberMesh : DamageNumber
  11. {
  12. /*
  13. * Contact me if you need any support.
  14. * Email: ekincantascontact@gmail.com
  15. * Discord: https:// discordcom/invite/nWbRkN8Zxr
  16. *
  17. * Check the manual for more information.
  18. * Manual: https:// ekincantascom/damage-numbers-pro/
  19. *
  20. * Thank you for using my asset.
  21. * If you want to add your own code please use the functions below.
  22. * I recommend creating a duplicate of this script first and renaming it.
  23. * Otherwise you may loose your custom code when you update damage numbers pro.
  24. *
  25. * Good Luck on your Project
  26. */
  27. }
  28. }