You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: LDtk/Renderer/ExampleRenderer.cs
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ namespace LDtk.Renderer;
16
16
/// This can all be done in your own class if you want to reimplement it and customize it differently
17
17
/// this one is mostly here to get you up and running quickly.
18
18
/// </summary>
19
-
publicclassLDtkRenderer:IDisposable
19
+
publicclassExampleRenderer:IDisposable
20
20
{
21
21
/// <summary> Gets or sets the spritebatch used for rendering with this Renderer. </summary>
22
22
publicSpriteBatchSpriteBatch{get;set;}
@@ -32,9 +32,9 @@ public class LDtkRenderer : IDisposable
32
32
readonlyGraphicsDevicegraphicsDevice;
33
33
readonlyContentManager?content;
34
34
35
-
/// <summary> Initializes a new instance of the <see cref="LDtkRenderer"/> class. This is used to intizialize the renderer for use with direct file loading. </summary>
35
+
/// <summary> Initializes a new instance of the <see cref="ExampleRenderer"/> class. This is used to intizialize the renderer for use with direct file loading. </summary>
36
36
/// <param name="spriteBatch">Spritebatch</param>
37
-
publicLDtkRenderer(SpriteBatchspriteBatch)
37
+
publicExampleRenderer(SpriteBatchspriteBatch)
38
38
{
39
39
SpriteBatch=spriteBatch;
40
40
graphicsDevice=spriteBatch.GraphicsDevice;
@@ -58,10 +58,10 @@ public LDtkRenderer(SpriteBatch spriteBatch)
58
58
}
59
59
}
60
60
61
-
/// <summary> Initializes a new instance of the <see cref="LDtkRenderer"/> class. This is used to intizialize the renderer for use with content Pipeline. </summary>
61
+
/// <summary> Initializes a new instance of the <see cref="ExampleRenderer"/> class. This is used to intizialize the renderer for use with content Pipeline. </summary>
|[LDtkRenderer(SpriteBatch, ContentManager)](#2642043051)|Initializes a new instance of the [LDtkRenderer](../README.md) class\. This is used to intizialize the renderer for use with content Pipeline\.|
14
-
|[LDtkRenderer(SpriteBatch)](#3898746929)|Initializes a new instance of the [LDtkRenderer](../README.md) class\. This is used to intizialize the renderer for use with direct file loading\.|
|[ExampleRenderer(SpriteBatch, ContentManager)](#2642043051)| Initializes a new instance of the [ExampleRenderer](../README.md) class\. This is used to intizialize the renderer for use with content Pipeline\.|
14
+
|[ExampleRenderer(SpriteBatch)](#3898746929)|Initializes a new instance of the [ExampleRenderer](../README.md) class\. This is used to intizialize the renderer for use with direct file loading\.|
15
15
16
16
<aid="2642043051"></a>
17
17
18
-
## LDtkRenderer\(SpriteBatch, ContentManager\)
18
+
## ExampleRenderer\(SpriteBatch, ContentManager\)
19
19
20
20
21
-
Initializes a new instance of the [LDtkRenderer](../README.md) class\. This is used to intizialize the renderer for use with content Pipeline\.
21
+
Initializes a new instance of the [ExampleRenderer](../README.md) class\. This is used to intizialize the renderer for use with content Pipeline\.
0 commit comments