Subject | Hash | Author | Date (UTC) |
---|---|---|---|
Clean up docs | 8cfe133cddf8f25a05fa3b2550a00def82382075 | fluffrabbit | 2018-01-08 11:08:54 |
Remove needless shell script | 5e3183c53c7cefe2df5fa970552624ddae3d55fd | fluffrabbit | 2018-01-08 10:52:42 |
Fix scoreboard for 2.1.4 | 65aefa3971a10d4c2053dc4e47f625162c0d15d8 | fluffrabbit | 2017-11-11 01:25:03 |
Improve plasma balls | 9c2eef3259fe2247f051c1dbcfdcee564fa6584e | fluffrabbit | 2017-08-06 22:21:52 |
Add plasma balls, change to day | f1e1be683db2b1736366070f379bf33410c508d8 | fluffrabbit | 2017-05-10 09:00:25 |
Put center camera in viewport to be hidden (small speedup) | 80fe9220e7133b3ad25ccac1d1f61040066578b8 | fluffrabbit | 2017-05-02 08:28:10 |
Improve performance (less shiny) | 5367491ee50de83bb3f1b2456f76f041958da1c5 | fluffrabbit | 2017-05-01 07:59:03 |
Add freight containers | f9d546676083fb36c1954a59af52ec59a0f526d2 | fluffrabbit | 2017-04-27 11:48:32 |
Add buildings, initial gyro support | 873a1295514f76bf1f7b4139888173414f4b2891 | fluffrabbit | 2017-04-18 12:17:50 |
Add scoreboard, bump version to 0.0.4 | 39acd8a4fceae35b5a40a437f02aa9bec193fb27 | fluffrabbit | 2017-04-13 06:57:15 |
Add button panel, save VR preference, improve vignette, box player in | 5355a1cfcb49dfb676394a932a9ae58bd5c7b942 | fluffrabbit | 2017-04-06 03:42:14 |
Initial commit | 8112cb088917c705bda9e291d3d15aacf003dce4 | fluffrabbit | 2017-03-28 15:44:04 |
File | Lines added | Lines deleted |
---|---|---|
DEVELOPING.md | 0 | 29 |
README.md | 11 | 5 |
TODO.txt | 0 | 4 |
File DEVELOPING.md deleted (index d4df843..0000000) | |||
1 | ## Developing with the Sky Hammer codebase | ||
2 | |||
3 | Recommended specs for development: Linux or Mac desktop with working Android build chain (Android/Replicant SDK, OpenJDK, Godot, all good software to have). Windows should work as well but Linux is the easiest platform for development when dealing with Android. | ||
4 | |||
5 | Sky Hammer introduces new VR features to the Godot engine at the game level, compiling in unmodified Godot 2.1.x. | ||
6 | |||
7 | There are no known Godot games in an even semi-stable state featuring VR, so this unstable game pioneers some of the techniques. Those techniques may not be officially supported until Godot 3. The focal point of the game's instability is the VR player prefab player.tscn, and its accompanying script file hybrid-control.gd. Aside from those two files, the majority of Sky Hammer is like any standard indie game. | ||
8 | |||
9 | Download the repository (either by downloading the archive, cloning the repo, or downloading only the git-pull script and running that) and import the project into Godot. When you want to push changes to the repository, an easy way to do it is with the script. Run ./git-upload on *nix or git-upload.bat on Windows. If you are not a member of the main Sky Hammer repository, you can set up your own and change the Git URL in the scripts accordingly. | ||
10 | |||
11 | ### FAQ | ||
12 | |||
13 | ### Q. Will this work on the Web? | ||
14 | A. Will the Web stop being shitty? | ||
15 | |||
16 | ### Q. Does this work in Godot 3.0? | ||
17 | A. As Godot 3.0 only supports GLES3 and mainly just expands on Godot 2.1's feature set, Sky Hammer will probably continue using 2.1 until 3.1 is released. | ||
18 | |||
19 | ### Q. Can you add feature X? | ||
20 | A. Can you? | ||
21 | |||
22 | ### Q. What are your long-term plans for this game? | ||
23 | A. Get it on F-Droid and let other people handle the other distribution centers. | ||
24 | |||
25 | ### Q. The head tracking really sucks. | ||
26 | A. Work is in progress in this area. | ||
27 | |||
28 | ### Q. What can I do to help? | ||
29 | A. [TODO.txt](TODO.txt) contains information on that. |
File README.md changed (mode: 100644) (index 10671f4..3207bdc) | |||
2 | 2 | ||
3 | 3 | Aliens came. Everything was blown up. But then one day when you were scavenging for food, you found the ultimate weapon. The Sky Hammer is a twin barrel turret that fires 1800 caseless 7mm rounds per minute, designed for one purpose: sending aliens love letters. You are the postmaster. | Aliens came. Everything was blown up. But then one day when you were scavenging for food, you found the ultimate weapon. The Sky Hammer is a twin barrel turret that fires 1800 caseless 7mm rounds per minute, designed for one purpose: sending aliens love letters. You are the postmaster. |
4 | 4 | ||
5 | You can't walk around (yet!) because joystick movement unfortunately crashes Godot engine, but you can shoot. | ||
5 | You can't walk around (yet!) because joystick movement is currently unimplemented, but you can shoot. | ||
6 | 6 | ||
7 | 7 | Recommended specs for gameplay: Android 4.0+ or iOS device with 4.5" - 6" screen OR dedicated Android VR headset. Device must have a magnetometer. Bluetooth controller highly recommended. | Recommended specs for gameplay: Android 4.0+ or iOS device with 4.5" - 6" screen OR dedicated Android VR headset. Device must have a magnetometer. Bluetooth controller highly recommended. |
8 | 8 | ||
9 | ### Features | ||
9 | ## Features | ||
10 | 10 | ||
11 | * Inworld scoreboard | ||
12 | * Graphical effects including sparks and reflections | ||
11 | * Godot engine 2.1 compatible | ||
12 | * Virtual interactive display | ||
13 | 13 | * 3D sound | * 3D sound |
14 | 14 | * Extensive use of 3D physics | * Extensive use of 3D physics |
15 | 15 | ||
16 | See [DEVELOPING.md](DEVELOPING.md) for technical details related to development. | ||
16 | ## Development | ||
17 | |||
18 | Recommended specs for development: Linux or Mac desktop with working Android build chain (Android/Replicant SDK, OpenJDK, Godot, all good software to have). Windows should work as well but Linux is the easiest platform for development when dealing with Android. | ||
19 | |||
20 | Sky Hammer currently implements its own HMD compatibility (Godot's first in 2.1). However, a lot has changed since this project was started and Godot 3.0 is approaching stability with built-in HMD support. Sky Hammer should be adapted accordingly. Soon. | ||
21 | |||
22 | Download or clone the repository and import the project into Godot. When you want to push changes to the repository, an easy way to do it is with the script. Run `./git-upload` on *nix or `git-upload.bat` on Windows. If you are not a member of the main Sky Hammer repository, you can set up your own and change the Git URL in the scripts accordingly. |
File TODO.txt deleted (index 30d0288..0000000) | |||
1 | 0.0.5 - variety in gameplay | ||
2 | 0.0.6 - add hominids | ||
3 | 0.0.7 - implement Godot's newest innovations | ||
4 | 0.1.0 - release on F-Droid |