-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2db020e
commit 43234a4
Showing
23 changed files
with
359 additions
and
280 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
bladeEngineVersion=4.1.1-SNAPSHOT | ||
bladeEngineVersion=4.3.0 | ||
character_icon_atlas=char-icons | ||
debug=false | ||
fast_leave=true | ||
gdxVersion=1.11.1-SNAPSHOT | ||
gdxVersion=1.12.0 | ||
inventory_pos=down | ||
pie_mode.desktop=false | ||
resolutions=1 | ||
roboVMVersion=2.3.18 | ||
roboVMVersion=2.3.20 | ||
title=Blade Engine Adventure | ||
ui_mode=PIE | ||
version=19 |
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
android.injected.testOnly=false | ||
androidGradlePluginVersion=8.1.0 | ||
appName=test-prj | ||
bladeEngineVersion=4.1.1-SNAPSHOT | ||
gdxVersion=1.11.1-SNAPSHOT | ||
roboVMVersion=2.3.18 | ||
androidGradlePluginVersion=7.2.2 | ||
bladeEngineVersion=4.3.0 | ||
bladeInkVersion=1.1.2 | ||
spinePlugin=false | ||
gdxControllersVersion=2.2.2 | ||
gdxControllersVersion=2.2.3 | ||
gdxVersion=1.12.0 | ||
org.gradle.configureondemand=false | ||
org.gradle.daemon=true | ||
org.gradle.jvmargs=-Xms128m -Xmx1536m | ||
org.gradle.configureondemand=false | ||
android.injected.testOnly=false | ||
roboVMVersion=2.3.20 | ||
spinePlugin=false | ||
version=19 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
bladeEngineVersion=4.1.0 | ||
bladeEngineVersion=4.3.0 | ||
debug=true | ||
gdxVersion=1.10.0 | ||
gdxVersion=1.12.0 | ||
inventory_pos=down | ||
pie_mode.desktop=false | ||
resolutions=1 | ||
roboVMVersion=2.3.12 | ||
roboVMVersion=2.3.20 | ||
scene_screen=com.bladecoder.engine.ui.retro.RetroSceneScreen | ||
title=Spine Animation Test | ||
version=unspecified |
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,38 @@ | ||
apply plugin: 'java' | ||
apply plugin: 'java-library' | ||
|
||
sourceCompatibility = 1.7 | ||
targetCompatibility=1.7 | ||
sourceCompatibility = 1.8 | ||
targetCompatibility = 1.8 | ||
|
||
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8' | ||
eclipse.project.name = appName + '-core' | ||
|
||
dependencies { | ||
api "com.badlogicgames.gdx:gdx:$gdxVersion" | ||
api fileTree(dir: '../libs', include: '*.jar') | ||
api "com.bladecoder.engine:blade-engine:$bladeEngineVersion" | ||
api "com.bladecoder.ink:blade-ink:$bladeInkVersion" | ||
api "org.minimalcode:minimalcode-beans:0.5.1" | ||
api "com.badlogicgames.gdx:gdx-freetype:$gdxVersion" | ||
implementation "com.badlogicgames.gdx-controllers:gdx-controllers-core:$gdxControllersVersion" | ||
|
||
|
||
if(project.hasProperty("spinePlugin") && project.spinePlugin.equals("true")) { | ||
println "Using Spine Plugin..." | ||
api "com.bladecoder.engine:blade-engine-spine-plugin:$bladeEngineVersion" | ||
} | ||
api "com.badlogicgames.gdx:gdx:$gdxVersion" | ||
api "com.bladecoder.engine:blade-engine:$bladeEngineVersion" | ||
implementation "com.bladecoder.ink:blade-ink:$bladeInkVersion" | ||
implementation "org.minimalcode:minimalcode-beans:0.5.1" | ||
implementation "com.badlogicgames.gdx:gdx-freetype:$gdxVersion" | ||
implementation "com.badlogicgames.gdx-controllers:gdx-controllers-core:$gdxControllersVersion" | ||
|
||
implementation "com.bladecoder.engine:blade-engine-spine-plugin:$bladeEngineVersion" | ||
} | ||
|
||
|
||
task setVersion(type: WriteProperties) { | ||
|
||
def props = new Properties() | ||
def propFile = project.file("../assets/BladeEngine.properties"); | ||
props.load(new FileReader(propFile)) | ||
def props = new Properties() | ||
def propFile = project.file("../assets/BladeEngine.properties"); | ||
props.load(new FileReader(propFile)) | ||
|
||
props."version" = version | ||
props."bladeEngineVersion" = bladeEngineVersion | ||
props."gdxVersion" = gdxVersion | ||
props."roboVMVersion" = roboVMVersion | ||
|
||
setProperties(props); | ||
setOutputFile(propFile); | ||
|
||
doLast { | ||
println "Set version info in versions.properties" | ||
} | ||
} | ||
props."bladeEngineVersion" = bladeEngineVersion | ||
props."gdxVersion" = gdxVersion | ||
props."roboVMVersion" = roboVMVersion | ||
|
||
processResources.finalizedBy(setVersion) | ||
setProperties(props); | ||
setOutputFile(propFile); | ||
|
||
doLast { | ||
println "Set version info in versions.properties" | ||
} | ||
} |
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
Oops, something went wrong.