Skip to content

Commit

Permalink
More casing
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonDarksideJ authored Aug 6, 2024
1 parent 0e0ac89 commit f66e2cb
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ The flexibility of this process enables you to create and update game assets usi

Describes how to add a custom processor or importer to an existing game solution.

- [Extending a Standard Content Processor](../../howto/Content_Pipeline/HowTo_Extend_Processor.md)
- [Extending a Standard Content Processor](../../howto/content_pipeline/HowTo_ExtendFontProcessor.md)

Describes how MonoGame lets you modify or extend the behavior of any standard Content Pipeline processor that ships with the product.

- [Developing with Parameterized Processors](CP_CustomParamProcs.md)

Describes how to develop with parameterized processors, both standard and custom.

- [How to: Extend the Font Description Processor to Support Additional Characters](../../howto/Content_Pipeline/HowTo_ExtendFontProcessor.md)
- [How to: Extend the Font Description Processor to Support Additional Characters](../../howto/content_pipeline/HowTo_ExtendFontProcessor.md)

Describes the process of developing a custom content processor needed to add additional characters to a [FontDescription](xref:Microsoft.Xna.Framework.Content.Pipeline.Graphics.FontDescription) object based on the text that is required by the game.
2 changes: 1 addition & 1 deletion articles/getting_to_know/whatis/content_pipeline/CP_DOM.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ The following diagram lists the complete Content DOM.

- [What Is Content?](CP_Overview.md)
- [What is the Content Pipeline?](CP_Architecture.md)
- [Extending a Standard Content Processor](../../howto/Content_Pipeline/HowTo_Extend_Processor.md)
- [Extending a Standard Content Processor](../../howto/content_pipeline/HowTo_Extend_Processor.md)
- [Adding New Content Types](CP_Content_Advanced.md)
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ This architecture also provides several other benefits.

For MonoGame games that use the most common types of art assets and formats, a detailed knowledge of how the Content Pipeline works is unnecessary. MonoGame supplies standard importers and processors for many popular DCC file formats. The only procedure necessary is to add these assets to the game's content project. For a list of formats MonoGame inherently supports, see [Standard Content Importers and Content Processors](CP_StdImpsProcs.md).

To use a DirectX Effect (.fx) file in your game, for example, just [add](../../howto/Content_Pipeline/HowTo_GameContent_Add.md) the file to the MonoGame game content project (.mgcb). The MonoGame Pipeline tool recognizes the .fx file type as one it supports, and it assigns the correct components to it that are used to process it when the game is built. The game then can access the effect through the standard [ContentManager.Load](xref:Microsoft.Xna.Framework.Content.ContentManager) method of the MonoGame Framework. The game programmer does not need to be concerned about all the steps taken by the Content Pipeline to ready it for this straightforward use.
To use a DirectX Effect (.fx) file in your game, for example, just [add](../../howto/content_pipeline/HowTo_GameContent_Add.md) the file to the MonoGame game content project (.mgcb). The MonoGame Pipeline tool recognizes the .fx file type as one it supports, and it assigns the correct components to it that are used to process it when the game is built. The game then can access the effect through the standard [ContentManager.Load](xref:Microsoft.Xna.Framework.Content.ContentManager) method of the MonoGame Framework. The game programmer does not need to be concerned about all the steps taken by the Content Pipeline to ready it for this straightforward use.

There are other circumstances, however, when it helps to understand how the Content Pipeline works.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Here is a sample localized `.spritefont` file:

## See Also

- [Adding Content to a Game](../../howto/Content_Pipeline/HowTo_GameContent_Add.md)
- [Adding Content to a Game](../../howto/content_pipeline/HowTo_GameContent_Add.md)

### Reference

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@ The following describes the standard Content Processors and the type of game ass

## See Also

- [Adding Content to a Game](../../howto/Content_Pipeline/HowTo_GameContent_Add.md)
- [Adding Content to a Game](../../howto/content_pipeline/HowTo_GameContent_Add.md)
- [What Is Content?](CP_Overview.md)
- [Adding a Custom Importer](CP_AddCustomProcImp.md)
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ The following describes only standard Content Processors that accept parameters,

## See Also

- [Adding Content to a Game](../../howto/Content_Pipeline/HowTo_GameContent_Add.md)
- [Adding Content to a Game](../../howto/content_pipeline/HowTo_GameContent_Add.md)
Original file line number Diff line number Diff line change
Expand Up @@ -77,5 +77,5 @@ Debugging `ProjCP` causes MSBuild to compile your test content while running und

- [What Is Content?](CP_Overview.md)
- [What is the Content Pipeline?](CP_Architecture.md)
- [Extending a Standard Content Processor](../../howto/Content_Pipeline/HowTo_Extend_Processor.md)
- [Extending a Standard Content Processor](../../howto/content_pipeline/HowTo_Extend_Processor.md)
- [Adding New Content Types](CP_Content_Advanced.md)
Original file line number Diff line number Diff line change
Expand Up @@ -85,5 +85,5 @@ The XML file that specifies the data that the Content Loader will read into the

## See Also

- [Using an XML File to Specify Content](../../howto/Content_Pipeline/HowTo_UseCustomXML.md)
- [Adding Content to a Game](../../howto/Content_Pipeline/HowTo_GameContent_Add.md)
- [Using an XML File to Specify Content](../../howto/content_pipeline/HowTo_UseCustomXML.md)
- [Adding Content to a Game](../../howto/content_pipeline/HowTo_GameContent_Add.md)
2 changes: 1 addition & 1 deletion articles/getting_to_know/whatis/content_pipeline/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ requireMSLicense: true

Describes the purpose of the MonoGame Content Pipeline and how it helps you add art and data assets to your game.

* [Loading Content](../../howto/Content_Pipeline/HowTo_GameContent_Add.md)
* [Loading Content](../../howto/content_pipeline/HowTo_GameContent_Add.md)

Demonstrates how to load content such as models, textures, sounds, and effects.

Expand Down
2 changes: 1 addition & 1 deletion articles/getting_to_know/whatis/content_pipeline/toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
- name: What is Content?
href: CP_Overview.md
- name: Loading Content
href: ../../howto/Content_Pipeline/HowTo_GameContent_Add.md
href: ../../howto/content_pipeline/HowTo_GameContent_Add.md
- name: Content Pipeline Architecture
href: CP_Architecture.md
- name: MonoGame Content Pipeline Class Library
Expand Down

0 comments on commit f66e2cb

Please sign in to comment.