Hi All,
I am new to construct 3. My requirement demands multiple small games in a single view. Its basically for a mobile and Web. So, I was exploring Construct 3 and found it would be a good fit, except, I am not sure how to load multiple small games separately. To understand it better.
Requirement
MainConstruct3 Project
- Sub project 1 (separate C3 projects)
- Sub project 2
- ...
Web Server
Main Construct 3 (url path : http://xyz.com)
- Use Iframe to load
- Sub project 1 (url path : xyz.com/subproject1)
- Sub project 2 (url path : xyz.com/subproject2)
Problem
- Sharing of data between projects is a bit complex. Need to send the data to the server and get the data back from server. Local storage cannot be used. Session storage can be used temporarily.
Are there any other method to achieve my requirement?
Reason why I want this setup
- Scalability - the requirement demands lots of small games. Using multiple layouts in a single C3 file may not be scalable.
- I wanted to minimize the effort for web and mobile development as I am developing it alone.