Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public Vector2 Pozycja;
- public Vector2 Predkosc;
- private List<Vector2> slad;
- private const float Grawitacja = 0.5f;
- private const float WspolczynnikOdbicia = -0.95f;
- private const int DlugoscSladu = 20;
- public Pileczka(Vector2 pozycjaStartowa)
- {
- Pozycja = pozycjaStartowa;
- Random random = new Random();
- Predkosc = new Vector2(
- (float)(random.NextDouble() * 2 - 1) * 5, // wygeneruje liczbę z przedziału -5,5
- (float)(random.NextDouble() * 2 - 1) * 5
- );
- slad = new List<Vector2>();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement