How to make the ball push off the pong paddle in pygameHow to Make the Ball Bounce only if it Hits the Paddle in Python, Pygame (Breakout Recreation)The ball is not detecting the paddle in pygame and I can't figure out whyHow to get the value of the paddle if it's on the left/right?How to make the ball bounce from top to bottom?How do I make the ball bounce off the paddle?Hitting ball at the end of paddle shows random motionHow to add friction in pong by using python?pong in pygame: ball doesnt bouncePong Collision PygamePing Pong in pygame
Cycling to work - 30mile return
Bookshelves: the intruder
How do you cope with rejection?
Why use a retrograde orbit?
Gambler's Fallacy Dice
Driving a school bus in the USA
Have GoT's showrunners reacted to the poor reception of the final season?
Does the usage of mathematical symbols work differently in books than in theses?
Taylor series leads to two different functions - why?
Can more than one instance of Bend Luck be applied to the same roll by multiple Wild Magic sorcerers?
Can ThermodynamicData be used with NSolve?
Why are stats in Angband written as 18/** instead of 19, 20...?
Pedaling at different gear ratios on flat terrain: what's the point?
Quotient of Three Dimensional Torus by Permutation on Coordinates
Why is choosing a suitable thermodynamic potential important?
How come Arya Stark wasn't hurt by this in Game of Thrones Season 8 Episode 5?
Alternative classical explanation of the Stern-Gerlach Experiment?
Have the writers and actors of GOT responded to its poor reception?
Shortest amud or daf in Shas?
How to pipe results multiple results into a command?
Why wear sunglasses in indoor velodromes?
Does the US Supreme Court vote using secret ballots?
Can I get the output of a command line program with TeX (using e.g. read18)?
Good examples of "two is easy, three is hard" in computational sciences
How to make the ball push off the pong paddle in pygame
How to Make the Ball Bounce only if it Hits the Paddle in Python, Pygame (Breakout Recreation)The ball is not detecting the paddle in pygame and I can't figure out whyHow to get the value of the paddle if it's on the left/right?How to make the ball bounce from top to bottom?How do I make the ball bounce off the paddle?Hitting ball at the end of paddle shows random motionHow to add friction in pong by using python?pong in pygame: ball doesnt bouncePong Collision PygamePing Pong in pygame
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I am doing a clone of pong and I have some problems with when ball reach paddle. Ball don't change direction when he reaches paddle. My question is how should I change my code that will make that ball will change a direction if he reaches a paddle.
I wrote a code for only one paddle, but I think that I don't get something and for that ball don't change his direction.
while running:
milli = clock.tick(60)
event = pygame.event.get()
borders()
objects()
x_position += x_velocity
y_position -= y_velocity
if x_position == 600:
x_position = 300
y_position = 300
x_position -= x_velocity
y_position -= y_velocity
if x_position == 0:
x_position = 300
y_position = 300
x_position += x_velocity
y_position -= y_velocity
if y_position < gy:
y_velocity *= -1
if y_position >= 600 - gy:
y_velocity *= -1
if x_position >= sp2 and y_position in range (y_movement2+45,y_movement2-45):
x_velocity *= -1
I except the output that will make that ball will change his direction when he reaches a paddle.
python-3.x pygame
add a comment |
I am doing a clone of pong and I have some problems with when ball reach paddle. Ball don't change direction when he reaches paddle. My question is how should I change my code that will make that ball will change a direction if he reaches a paddle.
I wrote a code for only one paddle, but I think that I don't get something and for that ball don't change his direction.
while running:
milli = clock.tick(60)
event = pygame.event.get()
borders()
objects()
x_position += x_velocity
y_position -= y_velocity
if x_position == 600:
x_position = 300
y_position = 300
x_position -= x_velocity
y_position -= y_velocity
if x_position == 0:
x_position = 300
y_position = 300
x_position += x_velocity
y_position -= y_velocity
if y_position < gy:
y_velocity *= -1
if y_position >= 600 - gy:
y_velocity *= -1
if x_position >= sp2 and y_position in range (y_movement2+45,y_movement2-45):
x_velocity *= -1
I except the output that will make that ball will change his direction when he reaches a paddle.
python-3.x pygame
x and y position is a position of my ball, that has a figure of a square. x and y velocity is the speed of my ball.
– Kuzma Plugachev
Mar 23 at 17:29
The last line is my code that will make, that ball change a direction when it touches a paddle
– Kuzma Plugachev
Mar 23 at 17:31
add a comment |
I am doing a clone of pong and I have some problems with when ball reach paddle. Ball don't change direction when he reaches paddle. My question is how should I change my code that will make that ball will change a direction if he reaches a paddle.
I wrote a code for only one paddle, but I think that I don't get something and for that ball don't change his direction.
while running:
milli = clock.tick(60)
event = pygame.event.get()
borders()
objects()
x_position += x_velocity
y_position -= y_velocity
if x_position == 600:
x_position = 300
y_position = 300
x_position -= x_velocity
y_position -= y_velocity
if x_position == 0:
x_position = 300
y_position = 300
x_position += x_velocity
y_position -= y_velocity
if y_position < gy:
y_velocity *= -1
if y_position >= 600 - gy:
y_velocity *= -1
if x_position >= sp2 and y_position in range (y_movement2+45,y_movement2-45):
x_velocity *= -1
I except the output that will make that ball will change his direction when he reaches a paddle.
python-3.x pygame
I am doing a clone of pong and I have some problems with when ball reach paddle. Ball don't change direction when he reaches paddle. My question is how should I change my code that will make that ball will change a direction if he reaches a paddle.
I wrote a code for only one paddle, but I think that I don't get something and for that ball don't change his direction.
while running:
milli = clock.tick(60)
event = pygame.event.get()
borders()
objects()
x_position += x_velocity
y_position -= y_velocity
if x_position == 600:
x_position = 300
y_position = 300
x_position -= x_velocity
y_position -= y_velocity
if x_position == 0:
x_position = 300
y_position = 300
x_position += x_velocity
y_position -= y_velocity
if y_position < gy:
y_velocity *= -1
if y_position >= 600 - gy:
y_velocity *= -1
if x_position >= sp2 and y_position in range (y_movement2+45,y_movement2-45):
x_velocity *= -1
I except the output that will make that ball will change his direction when he reaches a paddle.
python-3.x pygame
python-3.x pygame
asked Mar 23 at 17:28
Kuzma PlugachevKuzma Plugachev
253
253
x and y position is a position of my ball, that has a figure of a square. x and y velocity is the speed of my ball.
– Kuzma Plugachev
Mar 23 at 17:29
The last line is my code that will make, that ball change a direction when it touches a paddle
– Kuzma Plugachev
Mar 23 at 17:31
add a comment |
x and y position is a position of my ball, that has a figure of a square. x and y velocity is the speed of my ball.
– Kuzma Plugachev
Mar 23 at 17:29
The last line is my code that will make, that ball change a direction when it touches a paddle
– Kuzma Plugachev
Mar 23 at 17:31
x and y position is a position of my ball, that has a figure of a square. x and y velocity is the speed of my ball.
– Kuzma Plugachev
Mar 23 at 17:29
x and y position is a position of my ball, that has a figure of a square. x and y velocity is the speed of my ball.
– Kuzma Plugachev
Mar 23 at 17:29
The last line is my code that will make, that ball change a direction when it touches a paddle
– Kuzma Plugachev
Mar 23 at 17:31
The last line is my code that will make, that ball change a direction when it touches a paddle
– Kuzma Plugachev
Mar 23 at 17:31
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55316474%2fhow-to-make-the-ball-push-off-the-pong-paddle-in-pygame%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55316474%2fhow-to-make-the-ball-push-off-the-pong-paddle-in-pygame%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
x and y position is a position of my ball, that has a figure of a square. x and y velocity is the speed of my ball.
– Kuzma Plugachev
Mar 23 at 17:29
The last line is my code that will make, that ball change a direction when it touches a paddle
– Kuzma Plugachev
Mar 23 at 17:31