Hello all,
My first post on the forum here! I started using Construct 3 a short while ago to explore the viability of creating a grid-based strategy combat game. I built a prototype in another event-based coding tool (GDevelop), but I ran into some frustrating performance problems. Hoping to overcome those in Construct and, thus far, that has been the case.
I initially scoped the game in 2D, but I love the 2.5D aesthetic in Construct. However, I've run into some challenges with creating projection sprites and attachment points to replicate what I accomplished in 2D.
Goal: A key aspect of the game is a modular character builder which dictates abilities, attacks, and overall stats. There are four components - Body, left arm, right arm, and a head. In my prototype I designed the modularity using a system of attachment points which follow a hierarchy based on an invisible player object. Easy enough to replicate in Construct using only 2D, but I've not been able to translate that into 3D using sprite projections.
Here's a screenshot of my prototype built in GDevelop and my current Construct 3 project just to give you a visual idea of what I'm talking about:
Prototype
Current Construct Build
With the background covered, I have a few related questions.
Is it possible to select a specific instance of an object for a 3D face to use as a face object?
- Context: Ideally I only need one Sprite object for each selectable part for the Player and Opponent. Seeing as there are conceivably a lot of parts, I store each selection as a different animation which is then updated when a specific instance variable is noted in the instance. EX: Condition - Every Tick | If Sprite instance variable Role is "player" Action - Update to animation based on a global variable of the selection. Same applies to the opponent. Saves me from duplicating work in two identical 'Opponent' and 'Player' sprite objects.
When an instance of an object is being used as the face of a 3D object can I use the attachment points of that instance?
If no to the above question, is it possible to create an attachment point for a 3D object face?
- I may be missing something here, but I could not find a way to add new attachment points even though there was an interface in the image editor for doing so.
If no to everything above, is there some feature I am missing in Construct that would allow me to implement my intended functionality?
Thanks all for your time! Looking forward to diving deeper into this engine's community as I work on this project.