We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the tutorial "Create, load and save a map" It says:
from tml import Teemap twmap = Teemap() twmap.load('dm1_test') twmap.save('unnamed')
which is pretty tricky because Teemap has no function called load only one called _load. And an working path would be kewl too c:
better change it to something like this:
from tml import Teemap twmap = Teemap() twmap._load('maps/dm1') twmap.save('maps/dm1_copy')
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the tutorial "Create, load and save a map"
It says:
which is pretty tricky because Teemap has no function called load only one called _load.
And an working path would be kewl too c:
better change it to something like this:
The text was updated successfully, but these errors were encountered: