Skip to content
New issue

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

Also include the JSON GSON implementation for gLTF model loading #639

Merged
merged 1 commit into from
Dec 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion BasicGameTemplate/nbproject/project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ javac.classpath=\
${libs.jme3-terrain.classpath}:\
${libs.jme3-jbullet.classpath}:\
${libs.jme3-awt-dialogs.classpath}:\
${libs.jme3-plugins-json.classpath}
${libs.jme3-plugins-json.classpath}:\
${libs.jme3-plugins-json-gson.classpath}
# Space-separated list of extra javac options
javac.compilerargs=
javac.deprecation=false
Expand Down
1 change: 1 addition & 0 deletions JME3TestsTemplate/nbproject/project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jar.compress=false
javac.classpath=\
${libs.jme3-jogg.classpath}:\
${libs.jme3-plugins-json.classpath}:\
${libs.jme3-plugins-json-gson.classpath}:\
${libs.jme3-networking.classpath}:\
${libs.jme3-plugins.classpath}:\
${libs.jme3-core.classpath}:\
Expand Down
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ dependencies {
corelibs dep("org.jmonkeyengine:jme3-desktop:$jmeVersion-$jmeVersionTag", true, true)
corelibs dep("org.jmonkeyengine:jme3-awt-dialogs:$jmeVersion-$jmeVersionTag", true, true)
corelibs dep("org.jmonkeyengine:jme3-plugins-json:$jmeVersion-$jmeVersionTag", true, true)
corelibs dep("org.jmonkeyengine:jme3-plugins-json-gson:$jmeVersion-$jmeVersionTag", true, true)
corelibs dep("org.jmonkeyengine:jme3-lwjgl:$jmeVersion-$jmeVersionTag", true, true)
corelibs dep("org.jmonkeyengine:jme3-effects:$jmeVersion-$jmeVersionTag", true, true)
corelibs dep("com.github.stephengold:Minie:8.2.0", true, true) // replacement for bullet-native
Expand Down
Loading