Skip to content

Commit a925288

Browse files
committed
Merge branch 'main' into 2d-tutorial-bounty
2 parents 1ef2f57 + 50c8598 commit a925288

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

articles/getting_started/2_choosing_your_ide_rider.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,8 @@ You can download and install Rider from: [https://www.jetbrains.com/rider/downlo
1414
![Rider download](./images/2_chosing_your_ide_rider_download.png)
1515

1616
> [!NOTE]
17-
> Rider has a 30 day free trial license, but after that you will need to purchase one to continue using it. It is worth trying to see how it compares it VSCode.
17+
> Rider is free for personal use, you do have to register and create an account, but otherwise all features will be unlocked.
1818
>
19-
> **Hint* - or visit a nearby .NET user group, who often have JetBrains licenses available as giveaways, as they are very a generous and supportive company.
2019
2120
## Setting up Rider for development with MonoGame
2221

articles/getting_started/tools/mgfxc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ The resulting compiled effect file can be used from your game code like so:
6262

6363
```csharp
6464
byte[] bytecode = File.ReadAllBytes("mycompiled.mgfx");
65-
var effect = new Effect(bytecode);
65+
var effect = new Effect(graphicsDevice, bytecode);
6666
```
6767

6868
This is how the stock effects (BasicEffect, DualTextureEffect, etc) are compiled and loaded.

0 commit comments

Comments
 (0)