Skip to content

Commit aa4c10b

Browse files
KoloInDaCribFuroYT
authored andcommitted
update the macOS requirements
Co-Authored-By: Furo <90060358+furoyt@users.noreply.github.com>
1 parent ee4d861 commit aa4c10b

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

assets/content/cookbook/Expert/-06.MiscellaneousCodingTricks.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,12 @@ Most of these are recommeded to be used with [Modules](01.ScriptedModules.md), s
88

99
## Accessing the game's traces
1010

11-
By opening the command prompt and navigating to the folder the Funkin' application is with the `cd path/to/move/to` command, you can run `./Funkin` on Windows, macOS and Linux to open the game on the console. This has the benefits of being able to see what the game prints on the console, which is useful for debugging. On top of that, you can even print on the console yourself by using the `trace()` function, like in the following example.
11+
By opening the command prompt and navigating to the folder the Funkin' application is with the `cd path/to/move/to` command, you can run `./Funkin` on Windows and Linux to open the game on the console.
12+
13+
> [!NOTE]
14+
> On macOS, you need to find where the `Funkin.app` file is before right-clicking it and selecting "Open File Content". Afterwards, you need to navigate to the "Contents/MacOS" to find the Funkin' executable. Double-clicking it will open the terminal, containing every trace on the console.
15+
16+
This has the benefits of being able to see what the game prints on the console, which is useful for debugging. On top of that, you can even print on the console yourself by using the `trace()` function, like in the following example.
1217

1318
```haxe
1419
// ...

0 commit comments

Comments
 (0)