https://github.com/bugbiteme/hardcoreparkour
Playing with gdx-lib framwork
https://github.com/bugbiteme/hardcoreparkour
Last synced: 8 months ago
JSON representation
Playing with gdx-lib framwork
- Host: GitHub
- URL: https://github.com/bugbiteme/hardcoreparkour
- Owner: bugbiteme
- Created: 2016-11-04T04:16:07.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-11-13T19:10:05.000Z (over 9 years ago)
- Last Synced: 2025-01-31T12:36:16.237Z (over 1 year ago)
- Language: Java
- Size: 122 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# hardcoreparkour
##Built using IntelliJ IDEA
https://github.com/libgdx/libgdx/wiki/Gradle-and-Intellij-IDEA
##Template created with libGDX
- https://libgdx.badlogicgames.com
Instructions for setting up libGDX can be found on that site as well
##Game developement walk through video on YouTube
- https://www.youtube.com/watch?v=85A1w1iD2oA&list=PL-2t7SM0vDfdYJ5Pq9vxeivblbZuFvGJK&index=1
##Lots of other cool project tutorials by the same dude:
- https://www.youtube.com/user/ForeignGuyMike/playlists
##Integrating IntelliJ with git
- https://www.jetbrains.com/help/idea/2016.2/using-git-integration.html
One thing that is very cool. If you have set up git for yor project
directory the old fashion way, IntelliJ will automatically detect the
git files and allow you to add/commit/push your code through the IDE by
clicking and keyboard shortcuts. Still ok to do ye olde way via CLI.
##Compile and run in browser
- ./gradlew html:superDev
##Compile for web server deployment
- ./gradlew html:dist
- web application can be found in html/build
- you can test application locally by running a light weight python based web server within *build*
- python -m SimpleHTTPServer
- point browser to localhost:8000
- when you are ready to push to cf, create a war of all the contents in /html/build/dist
- jar cvf app.jar * (from inside the build folder)
- now you can push the jar to cf
- cf push *app name* -p app.jar
##See my work in progress
- http://test3-lsl.cfapps.io/
- press 'z' to make the box jump
=======
Android SDK Path on Windows: C:\Users\*user*\AppData\Local\Android\android-sdk
## notes while troubleshooting
- got error: "GwtApplication: exception: InflaterinputStream not supported in GWT" when deploying to web
- fix: remade the map using "Bas64 Uncompressed" format and now the web version works
- Base64 Compressed was causing failure