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
Hello when i launch main methods in tests folder
like using com.badlogic.gdx.ai.tests.BehaviorTreeTests#main
public static void main (String[] argv) { GdxAiTestUtils.launch(new BehaviorTreeTests()); }
i got error when he try to load a file.
skin = new Skin(Gdx.files.internal("data/uiskin.json")); Caused by: com.badlogic.gdx.utils.GdxRuntimeException: File not found: data\uiskin.json (Internal)
For fix i have to add tests/ before asset path
skin = new Skin(Gdx.files.internal("tests/data/uiskin.json"));
im the only with this issues ? Should i PR with all modifications ?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello when i launch main methods in tests folder
like using com.badlogic.gdx.ai.tests.BehaviorTreeTests#main
i got error when he try to load a file.
For fix i have to add tests/ before asset path
im the only with this issues ?
Should i PR with all modifications ?
The text was updated successfully, but these errors were encountered: