Skip to content

Commit

Permalink
Removed HaxeDevelop from Documentation, and also fixed small bash hig…
Browse files Browse the repository at this point in the history
…hlighting (#272)

* removed haxedevelop page, and maybe fixed something related to bash

* removed recommended since its the only listed option
  • Loading branch information
ninjamuffin99 authored Jan 29, 2024
1 parent 251bc9b commit 38d9efa
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 23 deletions.
7 changes: 3 additions & 4 deletions documentation/00_getting_started/00-getting-started.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,9 @@ Welcome to HaxeFlixel! To setup your Windows, Linux or Mac system to start makin
2. [Install HaxeFlixel](/documentation/install-haxeflixel)
3. [Run Hello World](/documentation/hello-world)

After that, you have to choose an editor / IDE to work in. Two popular options have their own pages here:
After that, you have to choose an editor / IDE to work in. The most popular option is Visual Studio Code (VS Code) which has it's own pages here:

- [Visual Studio Code](/documentation/visual-studio-code) (recommended)
- [HaxeDevelop](/documentation/HaxeDevelop) (Windows-only)
- [Visual Studio Code](/documentation/visual-studio-code)

A more comprehensive list of options can be found on [haxe.org](https://haxe.org/documentation/introduction/editors-and-ides.html).

Expand All @@ -24,5 +23,5 @@ If you need more help, reach out via any of the [communication channels](/docume

----

Note: this guide is a community effort. If you think you can help us improve it, please submit a pull request on
Note: this guide is a community effort. If you think you can help us improve it, please submit a pull request on
[GitHub](https://github.com/HaxeFlixel/flixel-docs) - each page has an "Edit" button in the upper right corner for this.
6 changes: 3 additions & 3 deletions documentation/00_getting_started/02-hello-world.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Make sure you have installed Flixel, as well as set up the `lime` and `flixel` c

HaxeFlixel requires a basic structure of files for any project that can be created automatically for you. First open a command prompt and switch to the directory where you'd like to have the project using `cd`, for example:

```bash
``` bash
cd C:\Users\<User>\Projects
```

Expand Down Expand Up @@ -51,7 +51,7 @@ All you need to do is add the following three lines to the `create()` function (
override public function create()
{
super.create();
var text = new flixel.text.FlxText(0, 0, 0, "Hello World", 64);
text.screenCenter();
add(text);
Expand All @@ -64,7 +64,7 @@ This will create a new `FlxText` instance with font size `64`, center it on the

Return to your command line window - now we can compile the project. First switch to the directory containing the `Project.xml` file:

```bash
``` bash
cd HelloWorld
```

Expand Down
16 changes: 0 additions & 16 deletions documentation/00_getting_started/04-HaxeDevelop.html.md

This file was deleted.

0 comments on commit 38d9efa

Please # to comment.