I'm extremely new to Construct 3 (and game development in particular) so this is probably super easy, but I'm stumped.
I'm trying to create a little platformer where instead of moving the player character, you move the level itself (sort of like Landsliders on iOS).
I have multiple platforms suspended in the air, and I'd like to "pan" the level but dragging the screen and having all the platforms pan back and forth together with the player staying in the center.
Here's what I've tried:
- Creating the 'level' as one single sprite that can be dragged horizontally. The problem with this is I can't figure out how to make multiple hitboxes/collision masks (whatever the proper term is?) for each platform inside the single 'level' sprite. I used the mask tool but I can only make one mask shape instead of one for each platform in the sprite.
- Pinning. I created an "attacher" sprite that sits under all the separate platform sprites, and the attacher can be dragged horizontally. I attempted to Pin all the platforms to this attacher object so they would move with it, but I think I did it wrong because only the attacher moves. In the Event Sheet I used System > Pick All "PlatformSprite" > "AttacherSprite" > Pin Pin to "PlatformSprite" (bar style). I also tried it the other way around, with the second half being "PlatformSprite" > Pin Pin to "AttacherSprite" (bar style) but neither worked.
Is there an easier or simpler way to accomplish this?
Thank you!