Skip to content

Commit

Permalink
Merge pull request #4 from rengert/pixijs
Browse files Browse the repository at this point in the history
Pixijs
  • Loading branch information
rengert authored Jan 22, 2022
2 parents c1f3d8e + d0a923d commit 509919e
Show file tree
Hide file tree
Showing 90 changed files with 4,408 additions and 912 deletions.
16 changes: 15 additions & 1 deletion README.md
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.
24 changes: 24 additions & 0 deletions capacitor.config.ts
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;
9 changes: 9 additions & 0 deletions ios/.gitignore
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
Loading

0 comments on commit 509919e

Please sign in to comment.