- Joined
- Jan 26, 2014
- Messages
- 1,281
- Reaction score
- 106
- First Language
- Irish
- Primarily Uses
- N/A
Considering how we have Sprites and TilingSprites now, how do you exactly make something move or scroll horizontally or vertically? For ex:
Milena.prototype.letMeScroll = function() { this.tileSprite = new Sprite(); this.tileSprite.bitmap = ImageManager.loadSystem("Grass");}Milena.prototype.scrollMe = function() {//how to scroll tileSprite horz or vertically here?}I want it to work like how Planes work in RMVXAce, where when you scroll the image the image repeats itself, not like a sprite that doesn't.
Milena.prototype.letMeScroll = function() { this.tileSprite = new Sprite(); this.tileSprite.bitmap = ImageManager.loadSystem("Grass");}Milena.prototype.scrollMe = function() {//how to scroll tileSprite horz or vertically here?}I want it to work like how Planes work in RMVXAce, where when you scroll the image the image repeats itself, not like a sprite that doesn't.
Last edited by a moderator:
