TinyLifeWeb/docs/api/TinyLife.Utilities.TextureHandler.yml

1551 lines
53 KiB
YAML
Raw Permalink Normal View History

2021-08-04 06:51:12 +02:00
### YamlMime:ManagedReference
items:
- uid: TinyLife.Utilities.TextureHandler
commentId: T:TinyLife.Utilities.TextureHandler
id: TextureHandler
parent: TinyLife.Utilities
children:
2022-12-20 13:25:03 +01:00
- TinyLife.Utilities.TextureHandler.AutoTileTexture
2023-01-16 12:24:01 +01:00
- TinyLife.Utilities.TextureHandler.ClothesTextures
2021-09-09 19:52:04 +02:00
- TinyLife.Utilities.TextureHandler.CursorTexture
2022-11-12 13:53:28 +01:00
- TinyLife.Utilities.TextureHandler.EmoteTexture
2023-10-11 16:05:32 +02:00
- TinyLife.Utilities.TextureHandler.FenceTextures
2021-09-09 19:52:04 +02:00
- TinyLife.Utilities.TextureHandler.FurnitureTextures
- TinyLife.Utilities.TextureHandler.LightTexture
2024-02-02 18:13:42 +01:00
- TinyLife.Utilities.TextureHandler.OnGameContentLoaded
- TinyLife.Utilities.TextureHandler.OnLoadGameContent
2021-09-09 19:52:04 +02:00
- TinyLife.Utilities.TextureHandler.OpeningTexture
2022-11-12 13:53:28 +01:00
- TinyLife.Utilities.TextureHandler.ParticleTexture
2021-09-09 19:52:04 +02:00
- TinyLife.Utilities.TextureHandler.RoofTexture
2023-10-11 16:05:32 +02:00
- TinyLife.Utilities.TextureHandler.StairsTextures
2021-09-09 19:52:04 +02:00
- TinyLife.Utilities.TextureHandler.TexturePacker
2024-02-02 18:13:42 +01:00
- TinyLife.Utilities.TextureHandler.TileHeight
2024-04-14 17:55:54 +02:00
- TinyLife.Utilities.TextureHandler.TileSizeFactor
2021-09-09 19:52:04 +02:00
- TinyLife.Utilities.TextureHandler.TileTexture
2024-02-02 18:13:42 +01:00
- TinyLife.Utilities.TextureHandler.TileWidth
2021-09-09 19:52:04 +02:00
- TinyLife.Utilities.TextureHandler.UiTexture
2021-10-14 20:30:40 +02:00
- TinyLife.Utilities.TextureHandler.VehicleTexture
2022-05-26 13:20:58 +02:00
- TinyLife.Utilities.TextureHandler.WallpaperTextures
2022-09-05 14:19:42 +02:00
- TinyLife.Utilities.TextureHandler.WaterTexture
2021-08-04 06:51:12 +02:00
langs:
- csharp
- vb
name: TextureHandler
nameWithType: TextureHandler
fullName: TinyLife.Utilities.TextureHandler
type: Class
source:
remote:
path: TinyLife/Utilities/TextureHandler.cs
2023-12-06 13:25:52 +01:00
branch: main
2021-11-26 23:42:22 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2021-08-04 06:51:12 +02:00
id: TextureHandler
2022-03-09 16:13:05 +01:00
path: ../TinyLife/Utilities/TextureHandler.cs
2023-12-06 13:25:52 +01:00
startLine: 17
2021-08-04 06:51:12 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.Utilities
2024-01-07 16:53:47 +01:00
summary: >-
The texture handler stores data for the game's textures, including all of the game's internal textures and various utility methods.
It also stores the game's <xref href="MLEM.Data.RuntimeTexturePacker" data-throw-if-not-resolved="false"></xref> which is used to pack all textures into a big texture for performance.
2021-08-04 06:51:12 +02:00
example: []
syntax:
content: public static class TextureHandler
content.vb: Public Module TextureHandler
inheritance:
- System.Object
inheritedMembers:
- System.Object.Equals(System.Object)
- System.Object.Equals(System.Object,System.Object)
- System.Object.GetHashCode
- System.Object.GetType
- System.Object.MemberwiseClone
- System.Object.ReferenceEquals(System.Object,System.Object)
- System.Object.ToString
2024-02-02 18:13:42 +01:00
- uid: TinyLife.Utilities.TextureHandler.OnLoadGameContent
commentId: E:TinyLife.Utilities.TextureHandler.OnLoadGameContent
id: OnLoadGameContent
2023-05-11 14:56:06 +02:00
parent: TinyLife.Utilities.TextureHandler
langs:
- csharp
- vb
2024-02-02 18:13:42 +01:00
name: OnLoadGameContent
nameWithType: TextureHandler.OnLoadGameContent
fullName: TinyLife.Utilities.TextureHandler.OnLoadGameContent
2023-05-11 14:56:06 +02:00
type: Event
source:
remote:
path: TinyLife/Utilities/TextureHandler.cs
2023-12-06 13:25:52 +01:00
branch: main
2023-05-11 14:56:06 +02:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2024-02-02 18:13:42 +01:00
id: OnLoadGameContent
2023-05-11 14:56:06 +02:00
path: ../TinyLife/Utilities/TextureHandler.cs
2023-12-06 13:25:52 +01:00
startLine: 23
2023-05-11 14:56:06 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.Utilities
2024-01-07 16:53:47 +01:00
summary: >-
An event that is invoked when the base game loads textures to be packed or otherwise used.
This event can be used by mods to change what textures the game uses by changing the <xref href="Microsoft.Xna.Framework.Content.ContentManager" data-throw-if-not-resolved="false"></xref> and/or the path of the texture to load.
2023-05-11 14:56:06 +02:00
example: []
syntax:
2024-02-02 18:13:42 +01:00
content: public static event TextureHandler.LoadGameContentDelegate OnLoadGameContent
2023-05-11 14:56:06 +02:00
return:
2024-02-02 18:13:42 +01:00
type: TinyLife.Utilities.TextureHandler.LoadGameContentDelegate
content.vb: Public Shared Event OnLoadGameContent As TextureHandler.LoadGameContentDelegate
- uid: TinyLife.Utilities.TextureHandler.OnGameContentLoaded
commentId: E:TinyLife.Utilities.TextureHandler.OnGameContentLoaded
id: OnGameContentLoaded
2023-05-11 14:56:06 +02:00
parent: TinyLife.Utilities.TextureHandler
langs:
- csharp
- vb
2024-02-02 18:13:42 +01:00
name: OnGameContentLoaded
nameWithType: TextureHandler.OnGameContentLoaded
fullName: TinyLife.Utilities.TextureHandler.OnGameContentLoaded
2023-05-11 14:56:06 +02:00
type: Event
source:
remote:
path: TinyLife/Utilities/TextureHandler.cs
2023-12-06 13:25:52 +01:00
branch: main
2023-05-11 14:56:06 +02:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2024-02-02 18:13:42 +01:00
id: OnGameContentLoaded
2023-05-11 14:56:06 +02:00
path: ../TinyLife/Utilities/TextureHandler.cs
2023-12-06 13:25:52 +01:00
startLine: 28
2023-05-11 14:56:06 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.Utilities
2024-01-07 16:53:47 +01:00
summary: >-
An event that is invoked when the base game has just loaded a <xref href="Microsoft.Xna.Framework.Graphics.Texture2D" data-throw-if-not-resolved="false"></xref> through a <xref href="Microsoft.Xna.Framework.Content.ContentManager" data-throw-if-not-resolved="false"></xref>.
This event can be used by mods to change what textures the game uses.
2023-05-11 14:56:06 +02:00
example: []
syntax:
2024-02-02 18:13:42 +01:00
content: public static event TextureHandler.GameContentLoadedDelegate OnGameContentLoaded
2023-05-11 14:56:06 +02:00
return:
2024-02-02 18:13:42 +01:00
type: TinyLife.Utilities.TextureHandler.GameContentLoadedDelegate
content.vb: Public Shared Event OnGameContentLoaded As TextureHandler.GameContentLoadedDelegate
- uid: TinyLife.Utilities.TextureHandler.TileWidth
commentId: P:TinyLife.Utilities.TextureHandler.TileWidth
id: TileWidth
parent: TinyLife.Utilities.TextureHandler
langs:
- csharp
- vb
name: TileWidth
nameWithType: TextureHandler.TileWidth
fullName: TinyLife.Utilities.TextureHandler.TileWidth
type: Property
source:
remote:
path: TinyLife/Utilities/TextureHandler.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TileWidth
path: ../TinyLife/Utilities/TextureHandler.cs
startLine: 33
assemblies:
- Tiny Life
namespace: TinyLife.Utilities
summary: The width of each tile, in pixels
example: []
syntax:
content: public static int TileWidth { get; }
parameters: []
return:
type: System.Int32
content.vb: Public Shared ReadOnly Property TileWidth As Integer
overload: TinyLife.Utilities.TextureHandler.TileWidth*
- uid: TinyLife.Utilities.TextureHandler.TileHeight
commentId: P:TinyLife.Utilities.TextureHandler.TileHeight
id: TileHeight
parent: TinyLife.Utilities.TextureHandler
langs:
- csharp
- vb
name: TileHeight
nameWithType: TextureHandler.TileHeight
fullName: TinyLife.Utilities.TextureHandler.TileHeight
type: Property
source:
remote:
path: TinyLife/Utilities/TextureHandler.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TileHeight
path: ../TinyLife/Utilities/TextureHandler.cs
startLine: 37
assemblies:
- Tiny Life
namespace: TinyLife.Utilities
summary: The height of each tile, in pixels
example: []
syntax:
content: public static int TileHeight { get; }
parameters: []
return:
type: System.Int32
content.vb: Public Shared ReadOnly Property TileHeight As Integer
overload: TinyLife.Utilities.TextureHandler.TileHeight*
2024-04-14 17:55:54 +02:00
- uid: TinyLife.Utilities.TextureHandler.TileSizeFactor
commentId: P:TinyLife.Utilities.TextureHandler.TileSizeFactor
id: TileSizeFactor
parent: TinyLife.Utilities.TextureHandler
langs:
- csharp
- vb
name: TileSizeFactor
nameWithType: TextureHandler.TileSizeFactor
fullName: TinyLife.Utilities.TextureHandler.TileSizeFactor
type: Property
source:
remote:
path: TinyLife/Utilities/TextureHandler.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TileSizeFactor
path: ../TinyLife/Utilities/TextureHandler.cs
startLine: 41
assemblies:
- Tiny Life
namespace: TinyLife.Utilities
summary: The factor that the current textures' tile size is increased or decreased by, based on the default value of 32x16 pixels.
example: []
syntax:
content: public static float TileSizeFactor { get; }
parameters: []
return:
type: System.Single
content.vb: Public Shared ReadOnly Property TileSizeFactor As Single
overload: TinyLife.Utilities.TextureHandler.TileSizeFactor*
2021-09-09 19:52:04 +02:00
- uid: TinyLife.Utilities.TextureHandler.TexturePacker
commentId: F:TinyLife.Utilities.TextureHandler.TexturePacker
id: TexturePacker
parent: TinyLife.Utilities.TextureHandler
langs:
- csharp
- vb
name: TexturePacker
nameWithType: TextureHandler.TexturePacker
fullName: TinyLife.Utilities.TextureHandler.TexturePacker
type: Field
source:
remote:
path: TinyLife/Utilities/TextureHandler.cs
2023-12-06 13:25:52 +01:00
branch: main
2021-11-26 23:42:22 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2021-09-09 19:52:04 +02:00
id: TexturePacker
2022-03-09 16:13:05 +01:00
path: ../TinyLife/Utilities/TextureHandler.cs
2024-04-14 17:55:54 +02:00
startLine: 44
2021-09-09 19:52:04 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.Utilities
syntax:
content: public static readonly RuntimeTexturePacker TexturePacker
return:
type: MLEM.Data.RuntimeTexturePacker
content.vb: Public Shared ReadOnly TexturePacker As RuntimeTexturePacker
- uid: TinyLife.Utilities.TextureHandler.FurnitureTextures
commentId: F:TinyLife.Utilities.TextureHandler.FurnitureTextures
id: FurnitureTextures
parent: TinyLife.Utilities.TextureHandler
langs:
- csharp
- vb
name: FurnitureTextures
nameWithType: TextureHandler.FurnitureTextures
fullName: TinyLife.Utilities.TextureHandler.FurnitureTextures
type: Field
source:
remote:
path: TinyLife/Utilities/TextureHandler.cs
2023-12-06 13:25:52 +01:00
branch: main
2021-11-26 23:42:22 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2021-09-09 19:52:04 +02:00
id: FurnitureTextures
2022-03-09 16:13:05 +01:00
path: ../TinyLife/Utilities/TextureHandler.cs
2024-04-14 17:55:54 +02:00
startLine: 45
2021-09-09 19:52:04 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.Utilities
syntax:
content: public static readonly List<DataTextureAtlas> FurnitureTextures
return:
type: System.Collections.Generic.List{MLEM.Data.DataTextureAtlas}
content.vb: Public Shared ReadOnly FurnitureTextures As List(Of DataTextureAtlas)
2023-01-16 12:24:01 +01:00
- uid: TinyLife.Utilities.TextureHandler.ClothesTextures
commentId: F:TinyLife.Utilities.TextureHandler.ClothesTextures
id: ClothesTextures
2022-05-24 13:36:05 +02:00
parent: TinyLife.Utilities.TextureHandler
langs:
- csharp
- vb
2023-01-16 12:24:01 +01:00
name: ClothesTextures
nameWithType: TextureHandler.ClothesTextures
fullName: TinyLife.Utilities.TextureHandler.ClothesTextures
type: Field
2022-05-24 13:36:05 +02:00
source:
remote:
path: TinyLife/Utilities/TextureHandler.cs
2023-12-06 13:25:52 +01:00
branch: main
2022-05-24 13:36:05 +02:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2023-01-16 12:24:01 +01:00
id: ClothesTextures
2022-05-24 13:36:05 +02:00
path: ../TinyLife/Utilities/TextureHandler.cs
2024-04-14 17:55:54 +02:00
startLine: 46
2022-05-24 13:36:05 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.Utilities
syntax:
2023-01-16 12:24:01 +01:00
content: public static readonly Dictionary<(AgeGroup, ClothesLayer), Dictionary<Point, TextureRegion>> ClothesTextures
2022-05-24 13:36:05 +02:00
return:
2023-01-16 12:24:01 +01:00
type: System.Collections.Generic.Dictionary{System.ValueTuple{TinyLife.Objects.AgeGroup,TinyLife.Objects.ClothesLayer},System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion}}
2023-03-30 18:07:55 +02:00
content.vb: Public Shared ReadOnly ClothesTextures As Dictionary(Of (AgeGroup, ClothesLayer), Dictionary(Of Point, TextureRegion))
2023-01-16 12:24:01 +01:00
- uid: TinyLife.Utilities.TextureHandler.WallpaperTextures
commentId: P:TinyLife.Utilities.TextureHandler.WallpaperTextures
id: WallpaperTextures
2021-09-09 19:52:04 +02:00
parent: TinyLife.Utilities.TextureHandler
langs:
- csharp
- vb
2023-01-16 12:24:01 +01:00
name: WallpaperTextures
nameWithType: TextureHandler.WallpaperTextures
fullName: TinyLife.Utilities.TextureHandler.WallpaperTextures
2021-09-09 19:52:04 +02:00
type: Property
source:
remote:
path: TinyLife/Utilities/TextureHandler.cs
2023-12-06 13:25:52 +01:00
branch: main
2021-11-26 23:42:22 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2023-01-16 12:24:01 +01:00
id: WallpaperTextures
2022-03-09 16:13:05 +01:00
path: ../TinyLife/Utilities/TextureHandler.cs
2024-04-14 17:55:54 +02:00
startLine: 48
2021-09-09 19:52:04 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.Utilities
syntax:
2023-01-16 12:24:01 +01:00
content: public static Dictionary<Point, TextureRegion> WallpaperTextures { get; }
2022-03-09 16:13:05 +01:00
parameters: []
return:
2022-12-20 13:25:03 +01:00
type: System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion}
2023-03-30 18:07:55 +02:00
content.vb: Public Shared Property WallpaperTextures As Dictionary(Of Point, TextureRegion)
2023-01-16 12:24:01 +01:00
overload: TinyLife.Utilities.TextureHandler.WallpaperTextures*
2023-10-11 16:05:32 +02:00
- uid: TinyLife.Utilities.TextureHandler.FenceTextures
commentId: P:TinyLife.Utilities.TextureHandler.FenceTextures
id: FenceTextures
parent: TinyLife.Utilities.TextureHandler
langs:
- csharp
- vb
name: FenceTextures
nameWithType: TextureHandler.FenceTextures
fullName: TinyLife.Utilities.TextureHandler.FenceTextures
type: Property
source:
remote:
path: TinyLife/Utilities/TextureHandler.cs
2023-12-06 13:25:52 +01:00
branch: main
2023-10-11 16:05:32 +02:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: FenceTextures
path: ../TinyLife/Utilities/TextureHandler.cs
2024-04-14 17:55:54 +02:00
startLine: 49
2023-10-11 16:05:32 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.Utilities
syntax:
content: public static Dictionary<Point, TextureRegion> FenceTextures { get; }
parameters: []
return:
type: System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion}
content.vb: Public Shared Property FenceTextures As Dictionary(Of Point, TextureRegion)
overload: TinyLife.Utilities.TextureHandler.FenceTextures*
2021-09-09 19:52:04 +02:00
- uid: TinyLife.Utilities.TextureHandler.UiTexture
commentId: P:TinyLife.Utilities.TextureHandler.UiTexture
id: UiTexture
parent: TinyLife.Utilities.TextureHandler
langs:
- csharp
- vb
name: UiTexture
nameWithType: TextureHandler.UiTexture
fullName: TinyLife.Utilities.TextureHandler.UiTexture
type: Property
source:
remote:
path: TinyLife/Utilities/TextureHandler.cs
2023-12-06 13:25:52 +01:00
branch: main
2021-11-26 23:42:22 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2021-09-09 19:52:04 +02:00
id: UiTexture
2022-03-09 16:13:05 +01:00
path: ../TinyLife/Utilities/TextureHandler.cs
2024-04-14 17:55:54 +02:00
startLine: 50
2021-09-09 19:52:04 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.Utilities
syntax:
2022-11-12 13:53:28 +01:00
content: public static Dictionary<Point, TextureRegion> UiTexture { get; }
2021-09-09 19:52:04 +02:00
parameters: []
return:
2022-11-12 13:53:28 +01:00
type: System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion}
2023-03-30 18:07:55 +02:00
content.vb: Public Shared Property UiTexture As Dictionary(Of Point, TextureRegion)
2021-09-09 19:52:04 +02:00
overload: TinyLife.Utilities.TextureHandler.UiTexture*
- uid: TinyLife.Utilities.TextureHandler.CursorTexture
commentId: P:TinyLife.Utilities.TextureHandler.CursorTexture
id: CursorTexture
parent: TinyLife.Utilities.TextureHandler
langs:
- csharp
- vb
name: CursorTexture
nameWithType: TextureHandler.CursorTexture
fullName: TinyLife.Utilities.TextureHandler.CursorTexture
type: Property
source:
remote:
path: TinyLife/Utilities/TextureHandler.cs
2023-12-06 13:25:52 +01:00
branch: main
2021-11-26 23:42:22 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2021-09-09 19:52:04 +02:00
id: CursorTexture
2022-03-09 16:13:05 +01:00
path: ../TinyLife/Utilities/TextureHandler.cs
2024-04-14 17:55:54 +02:00
startLine: 51
2021-09-09 19:52:04 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.Utilities
syntax:
content: public static UniformTextureAtlas CursorTexture { get; }
parameters: []
return:
type: MLEM.Textures.UniformTextureAtlas
2023-03-30 18:07:55 +02:00
content.vb: Public Shared Property CursorTexture As UniformTextureAtlas
2021-09-09 19:52:04 +02:00
overload: TinyLife.Utilities.TextureHandler.CursorTexture*
- uid: TinyLife.Utilities.TextureHandler.OpeningTexture
commentId: P:TinyLife.Utilities.TextureHandler.OpeningTexture
id: OpeningTexture
parent: TinyLife.Utilities.TextureHandler
langs:
- csharp
- vb
name: OpeningTexture
nameWithType: TextureHandler.OpeningTexture
fullName: TinyLife.Utilities.TextureHandler.OpeningTexture
type: Property
source:
remote:
path: TinyLife/Utilities/TextureHandler.cs
2023-12-06 13:25:52 +01:00
branch: main
2021-11-26 23:42:22 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2021-09-09 19:52:04 +02:00
id: OpeningTexture
2022-03-09 16:13:05 +01:00
path: ../TinyLife/Utilities/TextureHandler.cs
2024-04-14 17:55:54 +02:00
startLine: 52
2021-09-09 19:52:04 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.Utilities
syntax:
content: public static UniformTextureAtlas OpeningTexture { get; }
parameters: []
return:
type: MLEM.Textures.UniformTextureAtlas
2023-03-30 18:07:55 +02:00
content.vb: Public Shared Property OpeningTexture As UniformTextureAtlas
2021-09-09 19:52:04 +02:00
overload: TinyLife.Utilities.TextureHandler.OpeningTexture*
- uid: TinyLife.Utilities.TextureHandler.RoofTexture
commentId: P:TinyLife.Utilities.TextureHandler.RoofTexture
id: RoofTexture
parent: TinyLife.Utilities.TextureHandler
langs:
- csharp
- vb
name: RoofTexture
nameWithType: TextureHandler.RoofTexture
fullName: TinyLife.Utilities.TextureHandler.RoofTexture
type: Property
source:
remote:
path: TinyLife/Utilities/TextureHandler.cs
2023-12-06 13:25:52 +01:00
branch: main
2021-11-26 23:42:22 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2021-09-09 19:52:04 +02:00
id: RoofTexture
2022-03-09 16:13:05 +01:00
path: ../TinyLife/Utilities/TextureHandler.cs
2024-04-14 17:55:54 +02:00
startLine: 53
2021-09-09 19:52:04 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.Utilities
syntax:
2023-08-15 13:17:22 +02:00
content: public static Dictionary<Point, TextureRegion> RoofTexture { get; }
2021-09-09 19:52:04 +02:00
parameters: []
return:
2023-08-15 13:17:22 +02:00
type: System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion}
content.vb: Public Shared Property RoofTexture As Dictionary(Of Point, TextureRegion)
2021-09-09 19:52:04 +02:00
overload: TinyLife.Utilities.TextureHandler.RoofTexture*
- uid: TinyLife.Utilities.TextureHandler.TileTexture
commentId: P:TinyLife.Utilities.TextureHandler.TileTexture
id: TileTexture
parent: TinyLife.Utilities.TextureHandler
langs:
- csharp
- vb
name: TileTexture
nameWithType: TextureHandler.TileTexture
fullName: TinyLife.Utilities.TextureHandler.TileTexture
type: Property
source:
remote:
path: TinyLife/Utilities/TextureHandler.cs
2023-12-06 13:25:52 +01:00
branch: main
2021-11-26 23:42:22 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2021-09-09 19:52:04 +02:00
id: TileTexture
2022-03-09 16:13:05 +01:00
path: ../TinyLife/Utilities/TextureHandler.cs
2024-04-14 17:55:54 +02:00
startLine: 54
2021-09-09 19:52:04 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.Utilities
syntax:
2022-12-20 13:25:03 +01:00
content: public static Dictionary<Point, TextureRegion> TileTexture { get; }
2021-09-09 19:52:04 +02:00
parameters: []
return:
2022-12-20 13:25:03 +01:00
type: System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion}
2023-03-30 18:07:55 +02:00
content.vb: Public Shared Property TileTexture As Dictionary(Of Point, TextureRegion)
2021-09-09 19:52:04 +02:00
overload: TinyLife.Utilities.TextureHandler.TileTexture*
2022-12-20 13:25:03 +01:00
- uid: TinyLife.Utilities.TextureHandler.AutoTileTexture
commentId: P:TinyLife.Utilities.TextureHandler.AutoTileTexture
id: AutoTileTexture
parent: TinyLife.Utilities.TextureHandler
langs:
- csharp
- vb
name: AutoTileTexture
nameWithType: TextureHandler.AutoTileTexture
fullName: TinyLife.Utilities.TextureHandler.AutoTileTexture
type: Property
source:
remote:
path: TinyLife/Utilities/TextureHandler.cs
2023-12-06 13:25:52 +01:00
branch: main
2022-12-20 13:25:03 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AutoTileTexture
path: ../TinyLife/Utilities/TextureHandler.cs
2024-04-14 17:55:54 +02:00
startLine: 55
2022-12-20 13:25:03 +01:00
assemblies:
- Tiny Life
namespace: TinyLife.Utilities
syntax:
content: public static Dictionary<Point, TextureRegion> AutoTileTexture { get; }
parameters: []
return:
type: System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion}
2023-03-30 18:07:55 +02:00
content.vb: Public Shared Property AutoTileTexture As Dictionary(Of Point, TextureRegion)
2022-12-20 13:25:03 +01:00
overload: TinyLife.Utilities.TextureHandler.AutoTileTexture*
2022-09-05 14:19:42 +02:00
- uid: TinyLife.Utilities.TextureHandler.WaterTexture
commentId: P:TinyLife.Utilities.TextureHandler.WaterTexture
id: WaterTexture
parent: TinyLife.Utilities.TextureHandler
langs:
- csharp
- vb
name: WaterTexture
nameWithType: TextureHandler.WaterTexture
fullName: TinyLife.Utilities.TextureHandler.WaterTexture
type: Property
source:
remote:
path: TinyLife/Utilities/TextureHandler.cs
2023-12-06 13:25:52 +01:00
branch: main
2022-09-05 14:19:42 +02:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: WaterTexture
path: ../TinyLife/Utilities/TextureHandler.cs
2024-04-14 17:55:54 +02:00
startLine: 56
2022-09-05 14:19:42 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.Utilities
syntax:
2022-12-20 13:25:03 +01:00
content: public static Dictionary<Point, TextureRegion> WaterTexture { get; }
2022-09-05 14:19:42 +02:00
parameters: []
return:
2022-12-20 13:25:03 +01:00
type: System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion}
2023-03-30 18:07:55 +02:00
content.vb: Public Shared Property WaterTexture As Dictionary(Of Point, TextureRegion)
2022-09-05 14:19:42 +02:00
overload: TinyLife.Utilities.TextureHandler.WaterTexture*
2021-10-14 20:30:40 +02:00
- uid: TinyLife.Utilities.TextureHandler.VehicleTexture
commentId: P:TinyLife.Utilities.TextureHandler.VehicleTexture
id: VehicleTexture
2021-09-09 19:52:04 +02:00
parent: TinyLife.Utilities.TextureHandler
langs:
- csharp
- vb
2021-10-14 20:30:40 +02:00
name: VehicleTexture
nameWithType: TextureHandler.VehicleTexture
fullName: TinyLife.Utilities.TextureHandler.VehicleTexture
2021-09-09 19:52:04 +02:00
type: Property
source:
remote:
path: TinyLife/Utilities/TextureHandler.cs
2023-12-06 13:25:52 +01:00
branch: main
2021-11-26 23:42:22 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2021-10-14 20:30:40 +02:00
id: VehicleTexture
2022-03-09 16:13:05 +01:00
path: ../TinyLife/Utilities/TextureHandler.cs
2024-04-14 17:55:54 +02:00
startLine: 57
2021-09-09 19:52:04 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.Utilities
syntax:
2021-10-14 20:30:40 +02:00
content: public static DataTextureAtlas VehicleTexture { get; }
2021-09-09 19:52:04 +02:00
parameters: []
return:
type: MLEM.Data.DataTextureAtlas
2023-03-30 18:07:55 +02:00
content.vb: Public Shared Property VehicleTexture As DataTextureAtlas
2021-10-14 20:30:40 +02:00
overload: TinyLife.Utilities.TextureHandler.VehicleTexture*
2021-09-09 19:52:04 +02:00
- uid: TinyLife.Utilities.TextureHandler.LightTexture
commentId: P:TinyLife.Utilities.TextureHandler.LightTexture
id: LightTexture
parent: TinyLife.Utilities.TextureHandler
langs:
- csharp
- vb
name: LightTexture
nameWithType: TextureHandler.LightTexture
fullName: TinyLife.Utilities.TextureHandler.LightTexture
type: Property
source:
remote:
path: TinyLife/Utilities/TextureHandler.cs
2023-12-06 13:25:52 +01:00
branch: main
2021-11-26 23:42:22 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2021-09-09 19:52:04 +02:00
id: LightTexture
2022-03-09 16:13:05 +01:00
path: ../TinyLife/Utilities/TextureHandler.cs
2024-04-14 17:55:54 +02:00
startLine: 58
2021-09-09 19:52:04 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.Utilities
syntax:
content: public static UniformTextureAtlas LightTexture { get; }
parameters: []
return:
type: MLEM.Textures.UniformTextureAtlas
2023-03-30 18:07:55 +02:00
content.vb: Public Shared Property LightTexture As UniformTextureAtlas
2021-09-09 19:52:04 +02:00
overload: TinyLife.Utilities.TextureHandler.LightTexture*
2022-11-12 13:53:28 +01:00
- uid: TinyLife.Utilities.TextureHandler.ParticleTexture
commentId: P:TinyLife.Utilities.TextureHandler.ParticleTexture
id: ParticleTexture
parent: TinyLife.Utilities.TextureHandler
langs:
- csharp
- vb
name: ParticleTexture
nameWithType: TextureHandler.ParticleTexture
fullName: TinyLife.Utilities.TextureHandler.ParticleTexture
type: Property
source:
remote:
path: TinyLife/Utilities/TextureHandler.cs
2023-12-06 13:25:52 +01:00
branch: main
2022-11-12 13:53:28 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ParticleTexture
path: ../TinyLife/Utilities/TextureHandler.cs
2024-04-14 17:55:54 +02:00
startLine: 59
2022-11-12 13:53:28 +01:00
assemblies:
- Tiny Life
namespace: TinyLife.Utilities
syntax:
content: public static UniformTextureAtlas ParticleTexture { get; }
parameters: []
return:
type: MLEM.Textures.UniformTextureAtlas
2023-03-30 18:07:55 +02:00
content.vb: Public Shared Property ParticleTexture As UniformTextureAtlas
2022-11-12 13:53:28 +01:00
overload: TinyLife.Utilities.TextureHandler.ParticleTexture*
- uid: TinyLife.Utilities.TextureHandler.EmoteTexture
commentId: P:TinyLife.Utilities.TextureHandler.EmoteTexture
id: EmoteTexture
parent: TinyLife.Utilities.TextureHandler
langs:
- csharp
- vb
name: EmoteTexture
nameWithType: TextureHandler.EmoteTexture
fullName: TinyLife.Utilities.TextureHandler.EmoteTexture
type: Property
source:
remote:
path: TinyLife/Utilities/TextureHandler.cs
2023-12-06 13:25:52 +01:00
branch: main
2022-11-12 13:53:28 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: EmoteTexture
path: ../TinyLife/Utilities/TextureHandler.cs
2024-04-14 17:55:54 +02:00
startLine: 60
2022-11-12 13:53:28 +01:00
assemblies:
- Tiny Life
namespace: TinyLife.Utilities
syntax:
content: public static Dictionary<Point, TextureRegion> EmoteTexture { get; }
parameters: []
return:
type: System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion}
2023-03-30 18:07:55 +02:00
content.vb: Public Shared Property EmoteTexture As Dictionary(Of Point, TextureRegion)
2022-11-12 13:53:28 +01:00
overload: TinyLife.Utilities.TextureHandler.EmoteTexture*
2023-10-11 16:05:32 +02:00
- uid: TinyLife.Utilities.TextureHandler.StairsTextures
commentId: P:TinyLife.Utilities.TextureHandler.StairsTextures
id: StairsTextures
parent: TinyLife.Utilities.TextureHandler
langs:
- csharp
- vb
name: StairsTextures
nameWithType: TextureHandler.StairsTextures
fullName: TinyLife.Utilities.TextureHandler.StairsTextures
type: Property
source:
remote:
path: TinyLife/Utilities/TextureHandler.cs
2023-12-06 13:25:52 +01:00
branch: main
2023-10-11 16:05:32 +02:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: StairsTextures
path: ../TinyLife/Utilities/TextureHandler.cs
2024-04-14 17:55:54 +02:00
startLine: 61
2023-10-11 16:05:32 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.Utilities
syntax:
content: public static Dictionary<Point, TextureRegion> StairsTextures { get; }
parameters: []
return:
type: System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion}
content.vb: Public Shared Property StairsTextures As Dictionary(Of Point, TextureRegion)
overload: TinyLife.Utilities.TextureHandler.StairsTextures*
2021-08-04 06:51:12 +02:00
references:
- uid: MLEM.Data.RuntimeTexturePacker
commentId: T:MLEM.Data.RuntimeTexturePacker
parent: MLEM.Data
isExternal: true
name: RuntimeTexturePacker
nameWithType: RuntimeTexturePacker
fullName: MLEM.Data.RuntimeTexturePacker
- uid: TinyLife.Utilities
commentId: N:TinyLife.Utilities
2024-01-07 16:53:47 +01:00
href: TinyLife.html
2021-08-04 06:51:12 +02:00
name: TinyLife.Utilities
nameWithType: TinyLife.Utilities
fullName: TinyLife.Utilities
2023-03-30 18:07:55 +02:00
spec.csharp:
- uid: TinyLife
name: TinyLife
2024-01-07 16:53:47 +01:00
href: TinyLife.html
2023-03-30 18:07:55 +02:00
- name: .
- uid: TinyLife.Utilities
name: Utilities
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.html
2023-03-30 18:07:55 +02:00
spec.vb:
- uid: TinyLife
name: TinyLife
2024-01-07 16:53:47 +01:00
href: TinyLife.html
2023-03-30 18:07:55 +02:00
- name: .
- uid: TinyLife.Utilities
name: Utilities
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.html
2021-08-04 06:51:12 +02:00
- uid: System.Object
commentId: T:System.Object
parent: System
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
name: object
nameWithType: object
fullName: object
nameWithType.vb: Object
fullName.vb: Object
name.vb: Object
2021-08-04 06:51:12 +02:00
- uid: System.Object.Equals(System.Object)
commentId: M:System.Object.Equals(System.Object)
parent: System.Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
name: Equals(object)
nameWithType: object.Equals(object)
fullName: object.Equals(object)
nameWithType.vb: Object.Equals(Object)
fullName.vb: Object.Equals(Object)
name.vb: Equals(Object)
2021-08-04 06:51:12 +02:00
spec.csharp:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
2021-08-04 06:51:12 +02:00
- name: (
- uid: System.Object
2023-03-30 18:07:55 +02:00
name: object
2021-08-04 06:51:12 +02:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +02:00
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
2021-08-04 06:51:12 +02:00
- name: (
- uid: System.Object
name: Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +02:00
- name: )
- uid: System.Object.Equals(System.Object,System.Object)
commentId: M:System.Object.Equals(System.Object,System.Object)
parent: System.Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
name: Equals(object, object)
nameWithType: object.Equals(object, object)
fullName: object.Equals(object, object)
nameWithType.vb: Object.Equals(Object, Object)
fullName.vb: Object.Equals(Object, Object)
name.vb: Equals(Object, Object)
2021-08-04 06:51:12 +02:00
spec.csharp:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
2021-08-04 06:51:12 +02:00
- name: (
- uid: System.Object
2023-03-30 18:07:55 +02:00
name: object
2021-08-04 06:51:12 +02:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
2021-08-04 06:51:12 +02:00
- uid: System.Object
2023-03-30 18:07:55 +02:00
name: object
2021-08-04 06:51:12 +02:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +02:00
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
2021-08-04 06:51:12 +02:00
- name: (
- uid: System.Object
name: Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
2021-08-04 06:51:12 +02:00
- uid: System.Object
name: Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +02:00
- name: )
- uid: System.Object.GetHashCode
commentId: M:System.Object.GetHashCode
parent: System.Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2021-08-04 06:51:12 +02:00
name: GetHashCode()
2023-03-30 18:07:55 +02:00
nameWithType: object.GetHashCode()
fullName: object.GetHashCode()
nameWithType.vb: Object.GetHashCode()
fullName.vb: Object.GetHashCode()
2021-08-04 06:51:12 +02:00
spec.csharp:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2021-08-04 06:51:12 +02:00
- name: (
- name: )
spec.vb:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2021-08-04 06:51:12 +02:00
- name: (
- name: )
- uid: System.Object.GetType
commentId: M:System.Object.GetType
parent: System.Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
2021-08-04 06:51:12 +02:00
name: GetType()
2023-03-30 18:07:55 +02:00
nameWithType: object.GetType()
fullName: object.GetType()
nameWithType.vb: Object.GetType()
fullName.vb: Object.GetType()
2021-08-04 06:51:12 +02:00
spec.csharp:
- uid: System.Object.GetType
name: GetType
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
2021-08-04 06:51:12 +02:00
- name: (
- name: )
spec.vb:
- uid: System.Object.GetType
name: GetType
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
2021-08-04 06:51:12 +02:00
- name: (
- name: )
- uid: System.Object.MemberwiseClone
commentId: M:System.Object.MemberwiseClone
parent: System.Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2021-08-04 06:51:12 +02:00
name: MemberwiseClone()
2023-03-30 18:07:55 +02:00
nameWithType: object.MemberwiseClone()
fullName: object.MemberwiseClone()
nameWithType.vb: Object.MemberwiseClone()
fullName.vb: Object.MemberwiseClone()
2021-08-04 06:51:12 +02:00
spec.csharp:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2021-08-04 06:51:12 +02:00
- name: (
- name: )
spec.vb:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2021-08-04 06:51:12 +02:00
- name: (
- name: )
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
parent: System.Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
name: ReferenceEquals(object, object)
nameWithType: object.ReferenceEquals(object, object)
fullName: object.ReferenceEquals(object, object)
nameWithType.vb: Object.ReferenceEquals(Object, Object)
fullName.vb: Object.ReferenceEquals(Object, Object)
name.vb: ReferenceEquals(Object, Object)
2021-08-04 06:51:12 +02:00
spec.csharp:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
2021-08-04 06:51:12 +02:00
- name: (
- uid: System.Object
2023-03-30 18:07:55 +02:00
name: object
2021-08-04 06:51:12 +02:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
2021-08-04 06:51:12 +02:00
- uid: System.Object
2023-03-30 18:07:55 +02:00
name: object
2021-08-04 06:51:12 +02:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +02:00
- name: )
spec.vb:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
2021-08-04 06:51:12 +02:00
- name: (
- uid: System.Object
name: Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
2021-08-04 06:51:12 +02:00
- uid: System.Object
name: Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +02:00
- name: )
- uid: System.Object.ToString
commentId: M:System.Object.ToString
parent: System.Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
2021-08-04 06:51:12 +02:00
name: ToString()
2023-03-30 18:07:55 +02:00
nameWithType: object.ToString()
fullName: object.ToString()
nameWithType.vb: Object.ToString()
fullName.vb: Object.ToString()
2021-08-04 06:51:12 +02:00
spec.csharp:
- uid: System.Object.ToString
name: ToString
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
2021-08-04 06:51:12 +02:00
- name: (
- name: )
spec.vb:
- uid: System.Object.ToString
name: ToString
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
2021-08-04 06:51:12 +02:00
- name: (
- name: )
- uid: MLEM.Data
commentId: N:MLEM.Data
isExternal: true
name: MLEM.Data
nameWithType: MLEM.Data
fullName: MLEM.Data
2023-03-30 18:07:55 +02:00
spec.csharp:
- uid: MLEM
name: MLEM
isExternal: true
- name: .
- uid: MLEM.Data
name: Data
isExternal: true
spec.vb:
- uid: MLEM
name: MLEM
isExternal: true
- name: .
- uid: MLEM.Data
name: Data
isExternal: true
2021-08-04 06:51:12 +02:00
- uid: System
commentId: N:System
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system
2021-08-04 06:51:12 +02:00
name: System
nameWithType: System
fullName: System
2023-05-11 14:56:06 +02:00
- uid: Microsoft.Xna.Framework.Content.ContentManager
commentId: T:Microsoft.Xna.Framework.Content.ContentManager
parent: Microsoft.Xna.Framework.Content
isExternal: true
name: ContentManager
nameWithType: ContentManager
fullName: Microsoft.Xna.Framework.Content.ContentManager
2024-02-02 18:13:42 +01:00
- uid: TinyLife.Utilities.TextureHandler.LoadGameContentDelegate
commentId: T:TinyLife.Utilities.TextureHandler.LoadGameContentDelegate
2023-05-11 14:56:06 +02:00
parent: TinyLife.Utilities
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.TextureHandler.html
2024-02-02 18:13:42 +01:00
name: TextureHandler.LoadGameContentDelegate
nameWithType: TextureHandler.LoadGameContentDelegate
fullName: TinyLife.Utilities.TextureHandler.LoadGameContentDelegate
2023-05-11 14:56:06 +02:00
spec.csharp:
- uid: TinyLife.Utilities.TextureHandler
name: TextureHandler
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.TextureHandler.html
2023-05-11 14:56:06 +02:00
- name: .
2024-02-02 18:13:42 +01:00
- uid: TinyLife.Utilities.TextureHandler.LoadGameContentDelegate
name: LoadGameContentDelegate
href: TinyLife.Utilities.TextureHandler.LoadGameContentDelegate.html
2023-05-11 14:56:06 +02:00
spec.vb:
- uid: TinyLife.Utilities.TextureHandler
name: TextureHandler
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.TextureHandler.html
2023-05-11 14:56:06 +02:00
- name: .
2024-02-02 18:13:42 +01:00
- uid: TinyLife.Utilities.TextureHandler.LoadGameContentDelegate
name: LoadGameContentDelegate
href: TinyLife.Utilities.TextureHandler.LoadGameContentDelegate.html
2023-05-11 14:56:06 +02:00
- uid: Microsoft.Xna.Framework.Content
commentId: N:Microsoft.Xna.Framework.Content
isExternal: true
name: Microsoft.Xna.Framework.Content
nameWithType: Microsoft.Xna.Framework.Content
fullName: Microsoft.Xna.Framework.Content
spec.csharp:
- uid: Microsoft
name: Microsoft
isExternal: true
- name: .
- uid: Microsoft.Xna
name: Xna
isExternal: true
- name: .
- uid: Microsoft.Xna.Framework
name: Framework
isExternal: true
- name: .
- uid: Microsoft.Xna.Framework.Content
name: Content
isExternal: true
spec.vb:
- uid: Microsoft
name: Microsoft
isExternal: true
- name: .
- uid: Microsoft.Xna
name: Xna
isExternal: true
- name: .
- uid: Microsoft.Xna.Framework
name: Framework
isExternal: true
- name: .
- uid: Microsoft.Xna.Framework.Content
name: Content
isExternal: true
- uid: Microsoft.Xna.Framework.Graphics.Texture2D
commentId: T:Microsoft.Xna.Framework.Graphics.Texture2D
parent: Microsoft.Xna.Framework.Graphics
isExternal: true
name: Texture2D
nameWithType: Texture2D
fullName: Microsoft.Xna.Framework.Graphics.Texture2D
2024-02-02 18:13:42 +01:00
- uid: TinyLife.Utilities.TextureHandler.GameContentLoadedDelegate
commentId: T:TinyLife.Utilities.TextureHandler.GameContentLoadedDelegate
2023-05-11 14:56:06 +02:00
parent: TinyLife.Utilities
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.TextureHandler.html
2024-02-02 18:13:42 +01:00
name: TextureHandler.GameContentLoadedDelegate
nameWithType: TextureHandler.GameContentLoadedDelegate
fullName: TinyLife.Utilities.TextureHandler.GameContentLoadedDelegate
2023-05-11 14:56:06 +02:00
spec.csharp:
- uid: TinyLife.Utilities.TextureHandler
name: TextureHandler
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.TextureHandler.html
2023-05-11 14:56:06 +02:00
- name: .
2024-02-02 18:13:42 +01:00
- uid: TinyLife.Utilities.TextureHandler.GameContentLoadedDelegate
name: GameContentLoadedDelegate
href: TinyLife.Utilities.TextureHandler.GameContentLoadedDelegate.html
2023-05-11 14:56:06 +02:00
spec.vb:
- uid: TinyLife.Utilities.TextureHandler
name: TextureHandler
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.TextureHandler.html
2023-05-11 14:56:06 +02:00
- name: .
2024-02-02 18:13:42 +01:00
- uid: TinyLife.Utilities.TextureHandler.GameContentLoadedDelegate
name: GameContentLoadedDelegate
href: TinyLife.Utilities.TextureHandler.GameContentLoadedDelegate.html
2023-05-11 14:56:06 +02:00
- uid: Microsoft.Xna.Framework.Graphics
commentId: N:Microsoft.Xna.Framework.Graphics
isExternal: true
name: Microsoft.Xna.Framework.Graphics
nameWithType: Microsoft.Xna.Framework.Graphics
fullName: Microsoft.Xna.Framework.Graphics
spec.csharp:
- uid: Microsoft
name: Microsoft
isExternal: true
- name: .
- uid: Microsoft.Xna
name: Xna
isExternal: true
- name: .
- uid: Microsoft.Xna.Framework
name: Framework
isExternal: true
- name: .
- uid: Microsoft.Xna.Framework.Graphics
name: Graphics
isExternal: true
spec.vb:
- uid: Microsoft
name: Microsoft
isExternal: true
- name: .
- uid: Microsoft.Xna
name: Xna
isExternal: true
- name: .
- uid: Microsoft.Xna.Framework
name: Framework
isExternal: true
- name: .
- uid: Microsoft.Xna.Framework.Graphics
name: Graphics
isExternal: true
2024-02-02 18:13:42 +01:00
- uid: TinyLife.Utilities.TextureHandler.TileWidth*
commentId: Overload:TinyLife.Utilities.TextureHandler.TileWidth
href: TinyLife.Utilities.TextureHandler.html#TinyLife_Utilities_TextureHandler_TileWidth
name: TileWidth
nameWithType: TextureHandler.TileWidth
fullName: TinyLife.Utilities.TextureHandler.TileWidth
- uid: System.Int32
commentId: T:System.Int32
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
name: int
nameWithType: int
fullName: int
nameWithType.vb: Integer
fullName.vb: Integer
name.vb: Integer
- uid: TinyLife.Utilities.TextureHandler.TileHeight*
commentId: Overload:TinyLife.Utilities.TextureHandler.TileHeight
href: TinyLife.Utilities.TextureHandler.html#TinyLife_Utilities_TextureHandler_TileHeight
name: TileHeight
nameWithType: TextureHandler.TileHeight
fullName: TinyLife.Utilities.TextureHandler.TileHeight
2024-04-14 17:55:54 +02:00
- uid: TinyLife.Utilities.TextureHandler.TileSizeFactor*
commentId: Overload:TinyLife.Utilities.TextureHandler.TileSizeFactor
href: TinyLife.Utilities.TextureHandler.html#TinyLife_Utilities_TextureHandler_TileSizeFactor
name: TileSizeFactor
nameWithType: TextureHandler.TileSizeFactor
fullName: TinyLife.Utilities.TextureHandler.TileSizeFactor
- uid: System.Single
commentId: T:System.Single
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single
name: float
nameWithType: float
fullName: float
nameWithType.vb: Single
fullName.vb: Single
name.vb: Single
2021-09-09 19:52:04 +02:00
- uid: System.Collections.Generic.List{MLEM.Data.DataTextureAtlas}
commentId: T:System.Collections.Generic.List{MLEM.Data.DataTextureAtlas}
parent: System.Collections.Generic
definition: System.Collections.Generic.List`1
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
2021-09-09 19:52:04 +02:00
name: List<DataTextureAtlas>
nameWithType: List<DataTextureAtlas>
fullName: System.Collections.Generic.List<MLEM.Data.DataTextureAtlas>
nameWithType.vb: List(Of DataTextureAtlas)
fullName.vb: System.Collections.Generic.List(Of MLEM.Data.DataTextureAtlas)
name.vb: List(Of DataTextureAtlas)
spec.csharp:
- uid: System.Collections.Generic.List`1
name: List
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
2021-09-09 19:52:04 +02:00
- name: <
- uid: MLEM.Data.DataTextureAtlas
name: DataTextureAtlas
isExternal: true
- name: '>'
spec.vb:
- uid: System.Collections.Generic.List`1
name: List
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name: (
- name: Of
- name: " "
2021-09-09 19:52:04 +02:00
- uid: MLEM.Data.DataTextureAtlas
name: DataTextureAtlas
isExternal: true
- name: )
- uid: System.Collections.Generic.List`1
commentId: T:System.Collections.Generic.List`1
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
2021-09-09 19:52:04 +02:00
name: List<T>
nameWithType: List<T>
fullName: System.Collections.Generic.List<T>
nameWithType.vb: List(Of T)
fullName.vb: System.Collections.Generic.List(Of T)
name.vb: List(Of T)
spec.csharp:
- uid: System.Collections.Generic.List`1
name: List
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
2021-09-09 19:52:04 +02:00
- name: <
- name: T
- name: '>'
spec.vb:
- uid: System.Collections.Generic.List`1
name: List
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name: (
- name: Of
- name: " "
2021-09-09 19:52:04 +02:00
- name: T
- name: )
- uid: System.Collections.Generic
commentId: N:System.Collections.Generic
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system
2021-09-09 19:52:04 +02:00
name: System.Collections.Generic
nameWithType: System.Collections.Generic
fullName: System.Collections.Generic
2023-03-30 18:07:55 +02:00
spec.csharp:
- uid: System
name: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
- name: .
- uid: System.Collections
name: Collections
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections
- name: .
- uid: System.Collections.Generic
name: Generic
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic
spec.vb:
- uid: System
name: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
- name: .
- uid: System.Collections
name: Collections
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections
- name: .
- uid: System.Collections.Generic
name: Generic
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic
2023-01-16 12:24:01 +01:00
- uid: System.Collections.Generic.Dictionary{System.ValueTuple{TinyLife.Objects.AgeGroup,TinyLife.Objects.ClothesLayer},System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion}}
commentId: T:System.Collections.Generic.Dictionary{System.ValueTuple{TinyLife.Objects.AgeGroup,TinyLife.Objects.ClothesLayer},System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion}}
2022-05-26 13:20:58 +02:00
parent: System.Collections.Generic
definition: System.Collections.Generic.Dictionary`2
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
name: Dictionary<(AgeGroup, ClothesLayer), Dictionary<Point, TextureRegion>>
nameWithType: Dictionary<(AgeGroup, ClothesLayer), Dictionary<Point, TextureRegion>>
fullName: System.Collections.Generic.Dictionary<(TinyLife.Objects.AgeGroup, TinyLife.Objects.ClothesLayer), System.Collections.Generic.Dictionary<Microsoft.Xna.Framework.Point, MLEM.Textures.TextureRegion>>
nameWithType.vb: Dictionary(Of (AgeGroup, ClothesLayer), Dictionary(Of Point, TextureRegion))
fullName.vb: System.Collections.Generic.Dictionary(Of (TinyLife.Objects.AgeGroup, TinyLife.Objects.ClothesLayer), System.Collections.Generic.Dictionary(Of Microsoft.Xna.Framework.Point, MLEM.Textures.TextureRegion))
name.vb: Dictionary(Of (AgeGroup, ClothesLayer), Dictionary(Of Point, TextureRegion))
2022-05-26 13:20:58 +02:00
spec.csharp:
2023-01-16 12:24:01 +01:00
- uid: System.Collections.Generic.Dictionary`2
name: Dictionary
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
2023-01-16 12:24:01 +01:00
- name: <
2023-03-30 18:07:55 +02:00
- name: (
2023-01-16 12:24:01 +01:00
- uid: TinyLife.Objects.AgeGroup
name: AgeGroup
2024-01-07 16:53:47 +01:00
href: TinyLife.Objects.AgeGroup.html
2023-03-30 18:07:55 +02:00
- name: ','
- name: " "
2023-01-16 12:24:01 +01:00
- uid: TinyLife.Objects.ClothesLayer
name: ClothesLayer
2024-01-07 16:53:47 +01:00
href: TinyLife.Objects.ClothesLayer.html
2023-03-30 18:07:55 +02:00
- name: )
- name: ','
- name: " "
2022-05-26 13:20:58 +02:00
- uid: System.Collections.Generic.Dictionary`2
name: Dictionary
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
2022-05-26 13:20:58 +02:00
- name: <
2022-09-05 14:19:42 +02:00
- uid: Microsoft.Xna.Framework.Point
2022-05-26 13:20:58 +02:00
name: Point
isExternal: true
2023-03-30 18:07:55 +02:00
- name: ','
- name: " "
2022-05-26 13:20:58 +02:00
- uid: MLEM.Textures.TextureRegion
name: TextureRegion
isExternal: true
- name: '>'
2023-01-16 12:24:01 +01:00
- name: '>'
2022-05-26 13:20:58 +02:00
spec.vb:
2023-01-16 12:24:01 +01:00
- uid: System.Collections.Generic.Dictionary`2
name: Dictionary
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
- name: (
- name: Of
- name: " "
- name: (
2023-01-16 12:24:01 +01:00
- uid: TinyLife.Objects.AgeGroup
name: AgeGroup
2024-01-07 16:53:47 +01:00
href: TinyLife.Objects.AgeGroup.html
2023-03-30 18:07:55 +02:00
- name: ','
- name: " "
2023-01-16 12:24:01 +01:00
- uid: TinyLife.Objects.ClothesLayer
name: ClothesLayer
2024-01-07 16:53:47 +01:00
href: TinyLife.Objects.ClothesLayer.html
2023-01-16 12:24:01 +01:00
- name: )
2023-03-30 18:07:55 +02:00
- name: ','
- name: " "
2022-05-26 13:20:58 +02:00
- uid: System.Collections.Generic.Dictionary`2
name: Dictionary
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
- name: (
- name: Of
- name: " "
2022-09-05 14:19:42 +02:00
- uid: Microsoft.Xna.Framework.Point
2022-05-26 13:20:58 +02:00
name: Point
isExternal: true
2023-03-30 18:07:55 +02:00
- name: ','
- name: " "
2022-05-26 13:20:58 +02:00
- uid: MLEM.Textures.TextureRegion
name: TextureRegion
isExternal: true
- name: )
2023-01-16 12:24:01 +01:00
- name: )
2022-05-26 13:20:58 +02:00
- uid: System.Collections.Generic.Dictionary`2
commentId: T:System.Collections.Generic.Dictionary`2
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
2022-05-26 13:20:58 +02:00
name: Dictionary<TKey, TValue>
nameWithType: Dictionary<TKey, TValue>
fullName: System.Collections.Generic.Dictionary<TKey, TValue>
nameWithType.vb: Dictionary(Of TKey, TValue)
fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue)
name.vb: Dictionary(Of TKey, TValue)
spec.csharp:
- uid: System.Collections.Generic.Dictionary`2
name: Dictionary
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
2022-05-26 13:20:58 +02:00
- name: <
- name: TKey
2023-03-30 18:07:55 +02:00
- name: ','
- name: " "
2022-05-26 13:20:58 +02:00
- name: TValue
- name: '>'
spec.vb:
- uid: System.Collections.Generic.Dictionary`2
name: Dictionary
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
- name: (
- name: Of
- name: " "
2022-05-26 13:20:58 +02:00
- name: TKey
2023-03-30 18:07:55 +02:00
- name: ','
- name: " "
2022-05-26 13:20:58 +02:00
- name: TValue
- name: )
2023-01-16 12:24:01 +01:00
- uid: TinyLife.Utilities.TextureHandler.WallpaperTextures*
commentId: Overload:TinyLife.Utilities.TextureHandler.WallpaperTextures
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.TextureHandler.html#TinyLife_Utilities_TextureHandler_WallpaperTextures
2023-01-16 12:24:01 +01:00
name: WallpaperTextures
nameWithType: TextureHandler.WallpaperTextures
fullName: TinyLife.Utilities.TextureHandler.WallpaperTextures
- uid: System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion}
commentId: T:System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion}
parent: System.Collections.Generic
definition: System.Collections.Generic.Dictionary`2
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
2023-01-16 12:24:01 +01:00
name: Dictionary<Point, TextureRegion>
nameWithType: Dictionary<Point, TextureRegion>
fullName: System.Collections.Generic.Dictionary<Microsoft.Xna.Framework.Point, MLEM.Textures.TextureRegion>
nameWithType.vb: Dictionary(Of Point, TextureRegion)
fullName.vb: System.Collections.Generic.Dictionary(Of Microsoft.Xna.Framework.Point, MLEM.Textures.TextureRegion)
name.vb: Dictionary(Of Point, TextureRegion)
spec.csharp:
- uid: System.Collections.Generic.Dictionary`2
name: Dictionary
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
2023-01-16 12:24:01 +01:00
- name: <
- uid: Microsoft.Xna.Framework.Point
name: Point
isExternal: true
2023-03-30 18:07:55 +02:00
- name: ','
- name: " "
2023-01-16 12:24:01 +01:00
- uid: MLEM.Textures.TextureRegion
name: TextureRegion
isExternal: true
- name: '>'
spec.vb:
- uid: System.Collections.Generic.Dictionary`2
name: Dictionary
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
- name: (
- name: Of
- name: " "
2023-01-16 12:24:01 +01:00
- uid: Microsoft.Xna.Framework.Point
name: Point
isExternal: true
2023-03-30 18:07:55 +02:00
- name: ','
- name: " "
2023-01-16 12:24:01 +01:00
- uid: MLEM.Textures.TextureRegion
name: TextureRegion
isExternal: true
- name: )
2023-10-11 16:05:32 +02:00
- uid: TinyLife.Utilities.TextureHandler.FenceTextures*
commentId: Overload:TinyLife.Utilities.TextureHandler.FenceTextures
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.TextureHandler.html#TinyLife_Utilities_TextureHandler_FenceTextures
2023-10-11 16:05:32 +02:00
name: FenceTextures
nameWithType: TextureHandler.FenceTextures
fullName: TinyLife.Utilities.TextureHandler.FenceTextures
2021-09-09 19:52:04 +02:00
- uid: TinyLife.Utilities.TextureHandler.UiTexture*
commentId: Overload:TinyLife.Utilities.TextureHandler.UiTexture
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.TextureHandler.html#TinyLife_Utilities_TextureHandler_UiTexture
2021-09-09 19:52:04 +02:00
name: UiTexture
nameWithType: TextureHandler.UiTexture
fullName: TinyLife.Utilities.TextureHandler.UiTexture
- uid: TinyLife.Utilities.TextureHandler.CursorTexture*
commentId: Overload:TinyLife.Utilities.TextureHandler.CursorTexture
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.TextureHandler.html#TinyLife_Utilities_TextureHandler_CursorTexture
2021-09-09 19:52:04 +02:00
name: CursorTexture
nameWithType: TextureHandler.CursorTexture
fullName: TinyLife.Utilities.TextureHandler.CursorTexture
2022-12-20 13:25:03 +01:00
- uid: MLEM.Textures.UniformTextureAtlas
commentId: T:MLEM.Textures.UniformTextureAtlas
parent: MLEM.Textures
isExternal: true
name: UniformTextureAtlas
nameWithType: UniformTextureAtlas
fullName: MLEM.Textures.UniformTextureAtlas
- uid: MLEM.Textures
commentId: N:MLEM.Textures
isExternal: true
name: MLEM.Textures
nameWithType: MLEM.Textures
fullName: MLEM.Textures
2023-03-30 18:07:55 +02:00
spec.csharp:
- uid: MLEM
name: MLEM
isExternal: true
- name: .
- uid: MLEM.Textures
name: Textures
isExternal: true
spec.vb:
- uid: MLEM
name: MLEM
isExternal: true
- name: .
- uid: MLEM.Textures
name: Textures
isExternal: true
2021-09-09 19:52:04 +02:00
- uid: TinyLife.Utilities.TextureHandler.OpeningTexture*
commentId: Overload:TinyLife.Utilities.TextureHandler.OpeningTexture
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.TextureHandler.html#TinyLife_Utilities_TextureHandler_OpeningTexture
2021-09-09 19:52:04 +02:00
name: OpeningTexture
nameWithType: TextureHandler.OpeningTexture
fullName: TinyLife.Utilities.TextureHandler.OpeningTexture
- uid: TinyLife.Utilities.TextureHandler.RoofTexture*
commentId: Overload:TinyLife.Utilities.TextureHandler.RoofTexture
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.TextureHandler.html#TinyLife_Utilities_TextureHandler_RoofTexture
2021-09-09 19:52:04 +02:00
name: RoofTexture
nameWithType: TextureHandler.RoofTexture
fullName: TinyLife.Utilities.TextureHandler.RoofTexture
- uid: TinyLife.Utilities.TextureHandler.TileTexture*
commentId: Overload:TinyLife.Utilities.TextureHandler.TileTexture
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.TextureHandler.html#TinyLife_Utilities_TextureHandler_TileTexture
2021-09-09 19:52:04 +02:00
name: TileTexture
nameWithType: TextureHandler.TileTexture
fullName: TinyLife.Utilities.TextureHandler.TileTexture
2022-12-20 13:25:03 +01:00
- uid: TinyLife.Utilities.TextureHandler.AutoTileTexture*
commentId: Overload:TinyLife.Utilities.TextureHandler.AutoTileTexture
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.TextureHandler.html#TinyLife_Utilities_TextureHandler_AutoTileTexture
2022-12-20 13:25:03 +01:00
name: AutoTileTexture
nameWithType: TextureHandler.AutoTileTexture
fullName: TinyLife.Utilities.TextureHandler.AutoTileTexture
2022-09-05 14:19:42 +02:00
- uid: TinyLife.Utilities.TextureHandler.WaterTexture*
commentId: Overload:TinyLife.Utilities.TextureHandler.WaterTexture
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.TextureHandler.html#TinyLife_Utilities_TextureHandler_WaterTexture
2022-09-05 14:19:42 +02:00
name: WaterTexture
nameWithType: TextureHandler.WaterTexture
fullName: TinyLife.Utilities.TextureHandler.WaterTexture
2021-10-14 20:30:40 +02:00
- uid: TinyLife.Utilities.TextureHandler.VehicleTexture*
commentId: Overload:TinyLife.Utilities.TextureHandler.VehicleTexture
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.TextureHandler.html#TinyLife_Utilities_TextureHandler_VehicleTexture
2021-10-14 20:30:40 +02:00
name: VehicleTexture
nameWithType: TextureHandler.VehicleTexture
fullName: TinyLife.Utilities.TextureHandler.VehicleTexture
2021-09-09 19:52:04 +02:00
- uid: MLEM.Data.DataTextureAtlas
commentId: T:MLEM.Data.DataTextureAtlas
parent: MLEM.Data
isExternal: true
name: DataTextureAtlas
nameWithType: DataTextureAtlas
fullName: MLEM.Data.DataTextureAtlas
- uid: TinyLife.Utilities.TextureHandler.LightTexture*
commentId: Overload:TinyLife.Utilities.TextureHandler.LightTexture
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.TextureHandler.html#TinyLife_Utilities_TextureHandler_LightTexture
2021-09-09 19:52:04 +02:00
name: LightTexture
nameWithType: TextureHandler.LightTexture
fullName: TinyLife.Utilities.TextureHandler.LightTexture
2022-11-12 13:53:28 +01:00
- uid: TinyLife.Utilities.TextureHandler.ParticleTexture*
commentId: Overload:TinyLife.Utilities.TextureHandler.ParticleTexture
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.TextureHandler.html#TinyLife_Utilities_TextureHandler_ParticleTexture
2022-11-12 13:53:28 +01:00
name: ParticleTexture
nameWithType: TextureHandler.ParticleTexture
fullName: TinyLife.Utilities.TextureHandler.ParticleTexture
- uid: TinyLife.Utilities.TextureHandler.EmoteTexture*
commentId: Overload:TinyLife.Utilities.TextureHandler.EmoteTexture
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.TextureHandler.html#TinyLife_Utilities_TextureHandler_EmoteTexture
2022-11-12 13:53:28 +01:00
name: EmoteTexture
nameWithType: TextureHandler.EmoteTexture
fullName: TinyLife.Utilities.TextureHandler.EmoteTexture
2023-10-11 16:05:32 +02:00
- uid: TinyLife.Utilities.TextureHandler.StairsTextures*
commentId: Overload:TinyLife.Utilities.TextureHandler.StairsTextures
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.TextureHandler.html#TinyLife_Utilities_TextureHandler_StairsTextures
2023-10-11 16:05:32 +02:00
name: StairsTextures
nameWithType: TextureHandler.StairsTextures
fullName: TinyLife.Utilities.TextureHandler.StairsTextures