Question

How can I setup my cocos2d-X v3 in a way that the resources folder work for iOS and Android at the same time?

I'm following this tutorial, but it seens its solutions didn't worked

I run this on proj.android, but Eclipse doesn't see Resources folder

ln -s ../Resources ./Resources
Was it helpful?

Solution

You need to create a soft symlink properly

it's not

ln -s ../Resources ./Resources

but rather something like:

ln -s <the path to what you want> <symlink Name>

so for android:

ln -s /Users/Jason/AppResources assets

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top