omz:forum

    • Register
    • Login
    • Search
    • Recent
    • Popular
    1. Home
    2. vs212

    Welcome!

    This is the community forum for my apps Pythonista and Editorial.

    For individual support questions, you can also send an email. If you have a very short question or just want to say hello — I'm @olemoritz on Twitter.


    • Profile
    • Following 1
    • Followers 0
    • Topics 1
    • Posts 7
    • Best 2
    • Controversial 0
    • Groups 0

    vs212

    @vs212

    2
    Reputation
    286
    Profile views
    7
    Posts
    0
    Followers
    1
    Following
    Joined Last Online

    vs212 Unfollow Follow

    Best posts made by vs212

    • RE: Scene and turn-based game

      @mikael It's not just nice. You saved me. I've already climbed into such abysses. And here everything is so elegant and simple. You are an excellent programmer.

      posted in Pythonista
      vs212
      vs212
    • RE: Scene and turn-based game

      @mikael Thank you very much. A very powerful package!

      posted in Pythonista
      vs212
      vs212

    Latest posts made by vs212

    • RE: Scene and turn-based game

      @mikael It's not just nice. You saved me. I've already climbed into such abysses. And here everything is so elegant and simple. You are an excellent programmer.

      posted in Pythonista
      vs212
      vs212
    • RE: Scene and turn-based game

      @mikael My mistake was - I didn't use ‘ duration=’ ))

      Thank you!

      posted in Pythonista
      vs212
      vs212
    • RE: Scene and turn-based game

      @mikael Thank you very much. A very powerful package!

      posted in Pythonista
      vs212
      vs212
    • Scene and turn-based game

      I am making a turn-based game in which I have units (armies). How to set the sequential movement of armies in the Scene? Everything works in parallel in the Scene. And my armies are all moving together. I want them to move one by one. For example: unit1 and unit2 is moving together, not one by one. :((((

      actions = []
      actions.append(A.move_by(50, 0, d))
      actions.append(A.wait(p))
      self.unit1.run_action(A.sequence(actions))
      actions = []
      actions.append(A.move_by(0, 50, d))
      actions.append(A.wait(p))
      self.unit2.run_action(A.sequence(actions))
      posted in Pythonista
      vs212
      vs212