Making character increase in size as it collects objects?

I'm fairly new to GameSalad but I'm making a game where the character has to collect objects as it goes along, doing this then causes the character to grow in size. Does anyone have any idea how to do this?
Your help would be greatly appreciated.

Comments

  • BonepileGamesBonepileGames Member Posts: 194
    Put this in player:

    Rule
    When collides or overlaps with OBJECT(that it needs to collect)
    Do
    Change player>size>width to [player>size>width]+X (where X is the number of pixels)
    Change player>size>height to [player>size>height]+Y (where Y is the number of pixels)

    Keep X and Y the same if you want to keep it as a square.

    Hope it helps
  • callumgottcallumgott Member Posts: 1
    Thanks for that! Really appreciate your help
  • BonepileGamesBonepileGames Member Posts: 194
    Your welcome

    Good luck with your game.
Sign In or Register to comment.