I know how to use tiled maps (.tmx files) with cocos2d. But I want to use it without Cocos2d. Can i do that? If yes, How?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The
TMXfile format is documented in the Tiled wiki. It’s an XML-based format. iOS comes with two XML parsers to choose from:The event-driven
NSXMLParserclass, also discussed in the Event-Driven XML Programming Guide.libxml2, which has both event-driven and parse-tree-producing interfaces, and is documented at its own web site.