Brak opisu
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

NavMeshLink.deprecated.cs 923B

1234567891011121314151617181920212223
  1. using System;
  2. #pragma warning disable IDE1006 // Naming Styles
  3. #if ENABLE_NAVIGATION_OFFMESHLINK_TO_NAVMESHLINK
  4. namespace Unity.AI.Navigation
  5. {
  6. public partial class NavMeshLink
  7. {
  8. [Obsolete("autoUpdatePositions has been deprecated. Use autoUpdate instead. (UnityUpgradable) -> autoUpdate")]
  9. public bool autoUpdatePositions { get; set; }
  10. [Obsolete("biDirectional has been deprecated. Use bidirectional instead. (UnityUpgradable) -> bidirectional")]
  11. public bool biDirectional { get; set; }
  12. [Obsolete("costOverride has been deprecated. Use costModifier instead. (UnityUpgradable) -> costModifier")]
  13. public float costOverride { get; set; }
  14. [Obsolete("UpdatePositions() has been deprecated. Use UpdateLink() instead. (UnityUpgradable) -> UpdateLink(*)")]
  15. public void UpdatePositions() { }
  16. }
  17. }
  18. #endif
  19. #pragma warning restore IDE1006 // Naming Styles