Docs changes
This commit is contained in:
@@ -68,6 +68,8 @@ Decision was simple - I need to create an engine which will handle 3D file loadi
|
|||||||
* 07 - [Code](https://github.com/h4570/tyra/tree/master/tutorials/07-lighting) - Static lightmap and dynamic directional lights
|
* 07 - [Code](https://github.com/h4570/tyra/tree/master/tutorials/07-lighting) - Static lightmap and dynamic directional lights
|
||||||
* 08 - [Code](https://github.com/h4570/tyra/tree/master/tutorials/08-skybox-debug) - Skybox and debug rendering
|
* 08 - [Code](https://github.com/h4570/tyra/tree/master/tutorials/08-skybox-debug) - Skybox and debug rendering
|
||||||
* 09 - [Code](https://github.com/h4570/tyra/tree/master/tutorials/09-manual-mode) - Manual rendering (a'la OpenGL)
|
* 09 - [Code](https://github.com/h4570/tyra/tree/master/tutorials/09-manual-mode) - Manual rendering (a'la OpenGL)
|
||||||
|
* 10 - [Code](https://github.com/h4570/tyra/tree/master/tutorials/10-sprite=sheet) - Sprite sheet (font)
|
||||||
|
* 11 - [Code](https://github.com/h4570/tyra/tree/master/tutorials/11-texture-region-repeat) - Texture repeating
|
||||||
* Demo game - [Code](https://github.com/h4570/tyra/tree/master/demo)
|
* Demo game - [Code](https://github.com/h4570/tyra/tree/master/demo)
|
||||||
---
|
---
|
||||||
|
|
||||||
@@ -141,7 +143,7 @@ Distributed under the Apache License 2.0 License. See `LICENSE` for more informa
|
|||||||
Without these guys, Tyra would not happen:
|
Without these guys, Tyra would not happen:
|
||||||
* [Dr Henry Fortuna](http://ps2-edu.tensioncore.com/index.html) - for code sources, PS2 academy tutorials
|
* [Dr Henry Fortuna](http://ps2-edu.tensioncore.com/index.html) - for code sources, PS2 academy tutorials
|
||||||
* Whole [PS2DEV](https://github.com/ps2dev) team, and specially to [Rick Gaiser](https://github.com/rickgaiser), [fjtrujy](https://github.com/fjtrujy) - for a lot of good tips!
|
* Whole [PS2DEV](https://github.com/ps2dev) team, and specially to [Rick Gaiser](https://github.com/rickgaiser), [fjtrujy](https://github.com/fjtrujy) - for a lot of good tips!
|
||||||
* [Wellington Carvalho](https://github.com/Wellinator), [André Guilheme](https://github.com/Wolf3s), [Matías Israelson](https://github.com/israpps) - for testing, contributing to Tyra and sharing cool ideas!
|
* [Wellington Carvalho](https://github.com/Wellinator), [André Guilheme](https://github.com/Wolf3s), [Matías Israelson](https://github.com/israpps), [Guido Diego Quispe Robles](https://github.com/israpps) - for testing, contributing to Tyra and sharing cool ideas!
|
||||||
* [Leonardo Ono](https://github.com/leonardo-ono) - for software renderer example (with clipping!)
|
* [Leonardo Ono](https://github.com/leonardo-ono) - for software renderer example (with clipping!)
|
||||||
* [Lukasz D.K.](https://github.com/lukaszdk) - for huge archive of PS2 stuff
|
* [Lukasz D.K.](https://github.com/lukaszdk) - for huge archive of PS2 stuff
|
||||||
* [Guilherme Lampert](https://github.com/glampert) - for code sources
|
* [Guilherme Lampert](https://github.com/glampert) - for code sources
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
1. Git
|
1. Git
|
||||||
2. VSCode
|
2. VSCode
|
||||||
3. Docker with PowerShell as a default terminal
|
3. Docker with PowerShell as a default terminal
|
||||||
4. [PCSX2](https://github.com/h4570/tyra/blob/master/docs/install/pcsx2.md#)
|
4. [Configured PCSX2](https://github.com/h4570/tyra/blob/master/docs/install/pcsx2.md#)
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
+15
-11
@@ -1,15 +1,9 @@
|
|||||||
## Install & configure PCSX2
|
## PCSX2 preparation
|
||||||
|
|
||||||
- Download & install PCSX2 (1.6+ version) from https://pcsx2.net/
|
- Download PCSX2 from https://pcsx2.net/
|
||||||
|
- Install
|
||||||
- Extract bios files from https://romsmania.cc/bios/pcsx2-playstation-2-bios-3 to `%UserProfile%\Documents\PCSX2\bios`
|
- Extract bios files from https://romsmania.cc/bios/pcsx2-playstation-2-bios-3 to `%UserProfile%\Documents\PCSX2\bios`
|
||||||
- Close `PCSX2` if you have opened!
|
- Map pad to your keyboard, for example:
|
||||||
- Open `%UserProfile%\Documents\PCSX2\inis\PCSX2_vm.ini` in notepad
|
|
||||||
|
|
||||||
```
|
|
||||||
HostFs=enabled
|
|
||||||
```
|
|
||||||
|
|
||||||
- Open PCSX2 and map pad to your keyboard, for example:
|
|
||||||
|
|
||||||
```
|
```
|
||||||
WASD = Left joy
|
WASD = Left joy
|
||||||
@@ -18,4 +12,14 @@ Space = X
|
|||||||
Circle = C
|
Circle = C
|
||||||
```
|
```
|
||||||
|
|
||||||
- Enable **"EE timing hack"** in PCSX2 hacks!
|
### For PCSX2 1.6.X
|
||||||
|
- Close `PCSX2` if you have opened!
|
||||||
|
- Open `%UserProfile%\Documents\PCSX2\inis\PCSX2_vm.ini` in notepad and change HostFs option:
|
||||||
|
|
||||||
|
```
|
||||||
|
HostFs=enabled
|
||||||
|
```
|
||||||
|
|
||||||
|
### For PCSX2 1.7.X
|
||||||
|
- Open `PCSX2`
|
||||||
|
- Go to Settings -> Emulation -> Enable `Host file system`
|
||||||
Reference in New Issue
Block a user