• Just a reminder that providing specifics on, sharing links to, or naming websites where ROMs can be accessed is against the rules. If your post has any of this information it will be removed.
  • Ever thought it'd be cool to have your art, writing, or challenge runs featured on PokéCommunity? Click here for info - we'd love to spotlight your work!
  • Dawn, Gloria, Juliana, or Summer - which Pokémon protagonist is your favorite? Let us know by voting in our poll!
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.

[Scripting Question] Animation from a single tile

  • 350
    Posts
    6
    Years
    I have a 16*16 picture ready I want to use it in the background on my bag.
    And how can I animate it, I mean
    Ox and oy coordinates?
     
    I haves used
    Spoiler:



    And this doesn't work
     
    Last edited:
    I haves used
    Spoiler:



    And this doesn't work

    First:
    (@viewport
    should be (@viewport)
    so:
    Code:
    @sprites["bg"] =AnimatedPlane.new(@viewport)
    @sprites["bg"].bitmap = pbBitmap("location")
    @sprites["bg"].ox =+1
    @sprites["bg"].oy =+1
     
    Back
    Top