我試圖啓動我的Html項目,但我面臨一些問題。桌面和Android項目運行良好。問題是我有一個其他項目用作一個不被導入的庫。LibGdx和Gwt:沒有源代碼可用於類型
[ERROR] [com.mobilecostudios.walkingskeleton.GwtDefinition] - Errors in 'file:/C:/Users/chelo/Documents/mobilecostudios-libgdx/trunk/walkingskeleton/WalkingSkeleton/src/com/mobilecostudios/walkingskeleton/GameLoop.java'
[ERROR] [com.mobilecostudios.walkingskeleton.GwtDefinition] - Line 21: No source code is available for type com.mobilecostudios.gamelibrary.Domain.BaseSprite; did you forget to inherit a required module?
我的項目層次是:
- GameDevLibrary
- WalkingSkeleton
- WalkingSkeleton-HTML
我gwt.xml是:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit trunk//EN" "http://google-web-toolkit.googlecode.com/svn/trunk/distro-source/core/src/gwt-module.dtd">
<module>
<inherits name='com.badlogic.gdx.backends.gdx_backends_gwt' />
<inherits name='GameLoop' />
<entry-point class='com.mobilecostudios.walkingskeleton.client.GwtLauncher' />
<set-configuration-property name="gdx.assetpath" value="../WalkingSkeleton-android/assets" />
</module>
我已經將該工程添加到構建路徑中了。 我還缺少什麼?
構建路徑
我應該在哪裏添加路徑? –
我更新了我的答案。我發現很難確切地說出發生了什麼。你想要導入哪個項目? GWT模塊中導入了哪些「com.mobilecostudios.gamelibrary.Domain.BaseSprite」? – enrybo