Spine files as my sprites I am not so sure. Spine allows me to compile all the sprites I need for a character into a single object, allowing me to manage the states of the object and match them to the corresponding animation. Having better control over my game assets leads to better coding and just makes my life easier.As for levels, I would like to know what level editors GMS supports. It would be cool if it would allow for XML based levels that load custom tilesets and can determine corresponding object placement. I recall back in the day tiled was the best choice for this, but GM has changed and I don't want to have to handle too much string parsing.I will keep trying to figure this out, but till then I will be watching the MXR mods for inspiration. I like seeing what people do to the games they play. It can be fun.
After watching Super Bunny Hops article on modding and watching MXR's Fallout (Previously Skyrim) Mod collection, I couldn't help but think about the possibilities modular games bring to the table. I recall playing games like Cortex command, which had interesting albeit flawed gameplay improved significantly after I added Star Wars and Metal Slug weapons. I Even remembered the Mario Cart and Metroid Levels found in Team Fortress 2 and Terraria respectively. With the new version of GMS available I actually thought of toying around with the idea of making a platformer game with customizable characters, stats and levels. Then realized just how hard it would be.I really liked the idea for mods mainly because I like to see what people make with the game. But making those assets/objects accessible is something I just cant wrap my head around. I know on the PC you have to soft code game assets into files and then load them at run time. But what if you are making a game for android? I know that for android game files are stored in a directory, But that would mean that the player would have to have a convenient means of accessing those files and changing them as they fit. I would love to make a simple modable game that allows for loading custom levels and to change the skins of the players, but since I am now using
I agree. Plus, the modding communities behind games are basically what keeps them alive for so long in many cases.
There use to be a major push for "security", especially in Game Maker games (because it was honestly so easy to mess with them). Granted, this was coupled with a desire for speed, and with a flood of kids trying to make knockoff online fan games. But still, what if instead of obsofocating code and resources, we ran the opposite direction and opened up our games like so many major enterprises nowadays do?I can't speak to the specific systems that you are using in your games right now. But on mobile (at least on Android, as I have looked into it and know that Apple has much stricter requirements/rules on this sort of stuff), I would say that one option would be to go as far as to build in the mod platform and community into the actual app. In other words, literally provide a portal to download and install mods from the menu.I've used Tiled before, wrote a parser for an OpenGL engine for iOS I made while Cocos2D was still terrible :3
I guess the next best option is using the extension system of gamemaker. Parsing XML is a pretty simple thing to do and I can easily find C++/Java libraries to do that. I am doing C++ development with QT right now so I might as well explore that option. That is what the extension system is there for anyway.