https://github.com/bitbrain/scope
A 3D space network arena shooter
https://github.com/bitbrain/scope
Last synced: about 2 months ago
JSON representation
A 3D space network arena shooter
- Host: GitHub
- URL: https://github.com/bitbrain/scope
- Owner: bitbrain
- License: gpl-2.0
- Created: 2015-11-05T09:11:25.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-05-02T08:00:31.000Z (almost 10 years ago)
- Last Synced: 2025-06-08T16:42:33.452Z (10 months ago)
- Language: Java
- Size: 42.2 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# scope
A 3D space network arena shooter
## Features
* fight against your friends in a space arena
* collect energy and deliver as many as possible to win
* shoot your enemies with lasers to interrupt their journey
## Technology used
* libGDX
* MBassador
* Blender
## How to build the project
First of all you have to manually install [Universal Tween Engine](https://github.com/libgdx/libgdx/wiki/Universal-Tween-Engine#using-your-local-maven-repository) because it does not exist officially as Maven resource.
### Desktop
Run command:
```
gradlew desktop:run
```
Build & pack command:
```
gradlew desktop:dist
```
### Android
Run command:
```
gradlew android:installDebug android:run
```
Build & pack command:
```
gradlew android:assembleRelease
```
### iOS
Run command:
```
gradlew ios:launchIPhoneSimulator
gradlew ios:launchIPadSimulator
gradlew ios:launchIOSDevice
```
Build & pack command:
```
gradlew ios:createIPA
```