-
-
Save MobiDevelop/c114363c7e38fa4345ab to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.example.preloader.gen; | |
import com.badlogic.gdx.backends.gwt.preloader.DefaultAssetFilter; | |
public class ExampleAssetFilter extends DefaultAssetFilter { | |
@Override | |
public String getBundleName (String file) { | |
return super.getBundleName(file); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
<module> | |
<entry-point class="com.example.preloader.client.GwtLauncher"/> | |
<set-configuration-property name="gdx.assetpath" value="../example-android/assets"/> | |
<set-configuration-property name="gdx.assetfilterclass" value="com.example.preloader.gen.ExampleAssetFilter"/> | |
<inherits name="ExampleGame"/> | |
<inherits name="com.badlogic.gdx.backends.gdx_backends_gwt"/> | |
</module> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment