Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

EditablePathUtility.cs 264B

1234567891011121314
  1. using UnityEngine;
  2. using UnityEditor;
  3. namespace UnityEditor.U2D.Common.Path
  4. {
  5. internal class EditablePathUtility
  6. {
  7. public static int Mod(int x, int m)
  8. {
  9. int r = x % m;
  10. return r < 0 ? r + m : r;
  11. }
  12. }
  13. }