-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from rengert/pixijs
Pixijs
- Loading branch information
Showing
90 changed files
with
4,408 additions
and
912 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,3 +1,17 @@ | ||
# SolarStriker | ||
|
||
[Try it](https://rengert.github.io/solar-striker/) | ||
SolarStriker ist ein kleiner Shooter, welche mich an ein Spiel auf dem Gameboy erinnert. | ||
|
||
[Spielen / Try it](https://rengert.github.io/solar-striker/) | ||
|
||
## Lokal ausführen | ||
|
||
Als Basisapplikation dient hier Angular, daher ist der Standardbefehlt zu nutzen | ||
|
||
```ng serve``` | ||
|
||
## Umsetzung | ||
|
||
Wie bereits beschrieben wird als Applikationsbasis Angular genutzt. | ||
|
||
Als 2D Engine wird [PixiJS](https://pixijs.com/) verwendet. |
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import { CapacitorConfig } from '@capacitor/cli'; | ||
|
||
const config: CapacitorConfig = { | ||
appId: 'net.bolzplatzarena.solarstriker', | ||
appName: 'Solar Striker', | ||
webDir: 'dist/solar-striker', | ||
bundledWebRuntime: false, | ||
plugins: { | ||
SplashScreen: { | ||
launchShowDuration: 3000, | ||
launchAutoHide: false, | ||
backgroundColor: '#000000', | ||
showSpinner: true, | ||
iosSpinnerStyle: 'small', | ||
spinnerColor: '#999999', | ||
splashFullScreen: true, | ||
splashImmersive: true, | ||
layoutName: 'LaunchScreen', | ||
useDialog: true, | ||
}, | ||
}, | ||
}; | ||
|
||
export default config; |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
App/build | ||
App/Pods | ||
App/Podfile.lock | ||
App/App/public | ||
DerivedData | ||
xcuserdata | ||
|
||
# Cordova plugins for Capacitor | ||
capacitor-cordova-ios-plugins |
Oops, something went wrong.