Skip to content

Commit def3a73

Browse files
Fix HowTo graphics index
1 parent 402953e commit def3a73

File tree

1 file changed

+58
-1
lines changed
  • articles/getting_to_know/howto/graphics

1 file changed

+58
-1
lines changed

articles/getting_to_know/howto/graphics/index.md

Lines changed: 58 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,61 @@ description: These articles provide a details on how to use the Graphics API in
44
requireMSLicense: true
55
---
66

7-
## Coming soon
7+
## In This Section
8+
9+
This section demonstrates several graphical concepts divided into three categories:
10+
11+
* [2D Sprite Rendering](#2d-sprite-rendering)
12+
* [Cameras](#cameras)
13+
* [3D Rendering](#3d-rendering)
14+
* [3D Collisions](#3d-collisions)
15+
16+
### 2D Sprite Rendering
17+
18+
[How To Draw A Sprite](HowTo_Draw_A_Sprite.md)
19+
20+
Demonstrates how to draw a sprite by using the SpriteBatch class.
21+
22+
[How To Tint A Sprite](HowTo_Tint_Sprite.md)
23+
24+
Demonstrates how to tint a sprite using a Color value.
25+
26+
[How To Rotate A Sprite](HowTo_Rotate_Sprite.md)
27+
28+
Demonstrates how to rotate a sprite around its center.
29+
30+
[How To Rotate A Sprite Group](HowTo_Rotate_Sprite_Group.md)
31+
32+
Demonstrates how to rotate a group of sprites around a single point.
33+
34+
[How To Scale A Sprite](HowTo_Scale_Sprite.md)
35+
36+
Demonstrates how to scale a sprite using a uniform scale.
37+
38+
[How To Scale A Sprite using A Matrix](HowTo_Scale_Sprites_Matrix.md)
39+
40+
Demonstrates how to scale sprites using a matrix that is created based on the viewport width.
41+
42+
This section walks through several core concepts related to sprite rendering, including drawing text to the screen.
43+
44+
[How To Animate A Sprite](HowTo_Animate_Sprite.md)
45+
46+
Demonstrates how to animate a sprite from a texture using a custom class.
47+
48+
> [!IMPORTANT]
49+
> More to articles to follow.
50+
51+
### Cameras
52+
53+
> [!IMPORTANT]
54+
> Articles to follow.
55+
56+
### 3D Rendering
57+
58+
> [!IMPORTANT]
59+
> Articles to follow.
60+
61+
### 3D Collisions
62+
63+
> [!IMPORTANT]
64+
> Articles to follow.

0 commit comments

Comments
 (0)