I would like to ask the following regarding Construct 2:
Suppose I am to create a platformer game where we have the following:
- Different layouts. Going into another layout gives me a problem. Currently I am not quite sure how to make do with same objects on different layouts. I see that I can copy an object from one layout to another, but I got the following questions:
1. is my following understanding correct? Suppose we have an object Player. If I change/add/remove behaviors of one Player in the editor, this will apply to all Player in all Layouts, correct? The only thing that can only be different are the instance variables, correct?
2. Imagine making a game like Megaman where the player has lots of weapons. Each weapon here should refer to one Object type. Currently, I simply copy objects from one layout to another, but suppose I got 20 layouts and 8 weapons, and I decided to add another weapon, is there a way to "globally" add an object type without copying and pasting it over to the 20 layouts?