You create a sprite, open the image editor, import the animation as a sprite sheet.
You give the sprite a behaviour depending on what type of game. If it is a platformer you give it the platform behaviour.
Then in event sheet you create events such as on left/right button pressed play animation "Walk"
This is the animation editor : construct.net/en/make-games/manuals/construct-3/interface/animations-editor
This question does ask a lot though, probably better to look at the manual and try some things then come back on this if you are stuck.
This doesn't make too much sense. "When a word is chosen i want it to add a value equal to the global variable of the same word." ? Provide some examples.
ok no problem ^^
Look at the 'Persist' behaviour, it's for this kind of thing where destroyed objects stay that way when you return to the layout.
You can only have one instance of each object per container so it's creating the missing instances for two more containers. You won't be able to use Foliage 2 twice in the same tree for example.
Hi, you can use system compare condition when enemy.count=0. Count tracks the number of enemy objects that exist. You could also set a global variable to enemy.count so you can clearly see the number remaining.
Develop games in your browser. Powerful, performant & highly capable.
Don't use families and containers, just containers. You can say on collision with trunk, move the foliage, and it'll move the foliage that is in the container with the trunk you touched. If you try and pick the foliage as a family it'll start picking every foliage.
Because both layouts use the same event sheet, when zombies=0 it keeps reloading layout 2. If they must use the same event sheet then you can add a condition, zombies=0 and layoutname=layout1. Also if you set a target number for zombies on start of layout it would stop the constant refresh.
Whatever the logic is, some kind of player movement I'm guessing, put it into a function.
Then use two events -
Controller stick block : call function
D is down : call function
Your logic says : if the array contains AValue then set every array value to 5. You need to compare curx,cury = AValue in a loop.
It is possible to do this with tilemap and array but you'll have to track everything in an array and know what you're doing. If you are making a player and storage inventory similar to that game then that will use an array.
I'm not familiar with using tilemaps in that way but I imagine if you are tracking the cell in an array, then the status is going to have to be also tracked as I'm not sure how else you would check if a tile was both a generator and switched on/off. As the game becomes more complex it seems like it would be difficult to handle as you are putting what would be the entire game into an array. My approach would be to use sprite objects with instance variables, and they add to a global variable for power.
Member since 5 Aug, 2013