Nenhuma descrição
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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