Advertisement
drakon-firestone

Untitled

Oct 13th, 2024
14
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. public Vector2 Pozycja;
  2. public Vector2 Predkosc;
  3. private List<Vector2> slad;
  4. private const float Grawitacja = 0.5f;
  5. private const float WspolczynnikOdbicia = -0.95f;
  6. private const int DlugoscSladu = 20;
  7.  
  8. public Pileczka(Vector2 pozycjaStartowa)
  9. {
  10. Pozycja = pozycjaStartowa;
  11. Random random = new Random();
  12. Predkosc = new Vector2(
  13. (float)(random.NextDouble() * 2 - 1) * 5, // wygeneruje liczbę z przedziału -5,5
  14. (float)(random.NextDouble() * 2 - 1) * 5
  15. );
  16.  
  17. slad = new List<Vector2>();
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement