Python Forum
Not able to make a specific thing pause in pygame
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Not able to make a specific thing pause in pygame
#3
Those functions pause the whole script. Do you have a game loop? What you need are timed updates for your doors, where they measure how much time has passed and open and close how you want.

class Door():
    def __init__(self):
        self.last_update = pygame.time.get_ticks()
        self.interval = 1000  #    1 second
        self.state = "closed"
        

    def update(self):
        now = pygame.time.get_ticks()
        if now - self.last_update > self.interval:
            self.last_update = now
            if self.state == "closed":
                self.state = "open"
            else:
               self.state = "closed"
Reply


Messages In This Thread
RE: Not able to make a specific thing pause in pygame - by michael1789 - Dec-13-2020, 09:43 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  How can I pause only one object? actualpy 1 995 Feb-01-2024, 07:43 PM
Last Post: deanhystad
  How to pause execution (on windows)? pstein 1 1,480 Jun-23-2023, 06:58 PM
Last Post: rob101
  Is it Possible to pause a script? tester_V 6 4,197 Apr-05-2023, 06:11 AM
Last Post: tester_V
  I am confused with the key and value thing james1019 3 1,867 Feb-22-2023, 10:43 PM
Last Post: deanhystad
  Need help i just started the whole thing gabriel789 16 5,922 Sep-12-2022, 08:04 PM
Last Post: snippsat
  how to mouse click a specific item in pygame? Frankduc 5 2,832 May-03-2022, 06:22 PM
Last Post: Frankduc
  i making a terminal sign up website thing Kenrichppython 1 2,371 Nov-04-2021, 03:57 AM
Last Post: bowlofred
  use thing before self sylvanas 3 3,216 Jul-21-2021, 04:54 PM
Last Post: sylvanas
  Did subprocess.Popen() causes main routine to pause stdout? liudr 4 5,265 May-04-2021, 08:58 PM
Last Post: liudr
  How to make a telegram bot respond to the specific word in a sentence? Metodolog 2 7,777 Dec-22-2020, 07:30 AM
Last Post: martabassof

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020