https://github.com/krafpy/island
Source code of the 4k intro "Island".
https://github.com/krafpy/island
Last synced: over 1 year ago
JSON representation
Source code of the 4k intro "Island".
- Host: GitHub
- URL: https://github.com/krafpy/island
- Owner: Krafpy
- License: mit
- Created: 2024-04-04T06:42:38.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-04-04T22:01:08.000Z (over 2 years ago)
- Last Synced: 2024-04-05T08:46:12.533Z (over 2 years ago)
- Language: C
- Size: 206 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Island - 4k
4k intro released at [Revision 2024](https://2024.revision-party.net/).
## Links
- [Pouet](https://www.pouet.net/prod.php?which=96609)
- [Demozoo](https://demozoo.org/productions/342195/)
- [YouTube](https://youtu.be/1_wF9xH6PeI)
## Build
Building the intro requires the following tools to be installed and accessible via a
PowerShell command line (e.g. in PATH):
- Microsoft Visual C++ compiler `cl.exe` and linker `link.exe` for x86
- [`crinkler`](https://github.com/runestubbe/Crinkler)
- [`shader_minifier`](https://github.com/laurentlb/Shader_Minifier)
If you are using an antivirus software (Windows Defender included),
it is likely to detect the compiled executable as
a [trojan](https://en.wikipedia.org/wiki/Trojan_horse_(computing)).
You'll need to whitelist the file or the entire folder in your antivirus before compiling or running it.
Build an uncompressed debug version (uses MSVC's linker):
```powershell
.\build.ps1
```
or the compressed release (uses crinkler):
```powershell
.\build.ps1 .\release.json -CrinklerTries 8000
```
and run:
```powershell
.\main.exe
```