TinyLifeWeb/docs/api/TinyLife.World.WallMode.yml
2024-01-07 16:53:47 +01:00

1628 lines
57 KiB
YAML

### YamlMime:ManagedReference
items:
- uid: TinyLife.World.WallMode
commentId: T:TinyLife.World.WallMode
id: WallMode
parent: TinyLife.World
children:
- TinyLife.World.WallMode.#ctor(MLEM.Textures.UniformTextureAtlas,Microsoft.Xna.Framework.Point)
- TinyLife.World.WallMode.ApplyMasks(Microsoft.Xna.Framework.Graphics.Texture2D,System.Int32,System.Int32,MLEM.Data.RuntimeTexturePacker,System.Action{System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion}})
- TinyLife.World.WallMode.Door
- TinyLife.World.WallMode.Full
- TinyLife.World.WallMode.FullSizeWindow
- TinyLife.World.WallMode.LongWindow
- TinyLife.World.WallMode.MaskPosition
- TinyLife.World.WallMode.MaskTexture
- TinyLife.World.WallMode.Modes
- TinyLife.World.WallMode.NarrowLong
- TinyLife.World.WallMode.NarrowWideTop
- TinyLife.World.WallMode.OffsetTextureRegion(Microsoft.Xna.Framework.Point,System.Boolean,System.Boolean)
- TinyLife.World.WallMode.OutlineOnly
- TinyLife.World.WallMode.Register(TinyLife.World.WallMode)
- TinyLife.World.WallMode.Roof
- TinyLife.World.WallMode.RoofGable
- TinyLife.World.WallMode.RoofGableInverse
- TinyLife.World.WallMode.SmallWindow
- TinyLife.World.WallMode.StairsBottom
- TinyLife.World.WallMode.StairsTop
langs:
- csharp
- vb
name: WallMode
nameWithType: WallMode
fullName: TinyLife.World.WallMode
type: Class
source:
remote:
path: TinyLife/World/WallMode.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: WallMode
path: ../TinyLife/World/WallMode.cs
startLine: 17
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: A wall mode is a way that a <xref href="TinyLife.World.Wall" data-throw-if-not-resolved="false"></xref>'s wallpaper can be displayed. Each wall mode represents a cutout that hides certain parts of a wall for an <xref href="TinyLife.World.Opening" data-throw-if-not-resolved="false"></xref> or <xref href="TinyLife.World.WallMode.Roof" data-throw-if-not-resolved="false"></xref> to be displayed there.
example: []
syntax:
content: public class WallMode
content.vb: Public Class WallMode
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
extensionMethods:
- TinyLife.World.WallMode.TinyLife.Utilities.Extensions.JsonCopy``1
- uid: TinyLife.World.WallMode.Modes
commentId: F:TinyLife.World.WallMode.Modes
id: Modes
parent: TinyLife.World.WallMode
langs:
- csharp
- vb
name: Modes
nameWithType: WallMode.Modes
fullName: TinyLife.World.WallMode.Modes
type: Field
source:
remote:
path: TinyLife/World/WallMode.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Modes
path: ../TinyLife/World/WallMode.cs
startLine: 23
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: The registered wall modes, both by mods and the game itself.
example: []
syntax:
content: public static readonly ReadOnlyCollection<WallMode> Modes
return:
type: System.Collections.ObjectModel.ReadOnlyCollection{TinyLife.World.WallMode}
content.vb: Public Shared ReadOnly Modes As ReadOnlyCollection(Of WallMode)
- uid: TinyLife.World.WallMode.Full
commentId: F:TinyLife.World.WallMode.Full
id: Full
parent: TinyLife.World.WallMode
langs:
- csharp
- vb
name: Full
nameWithType: WallMode.Full
fullName: TinyLife.World.WallMode.Full
type: Field
source:
remote:
path: TinyLife/World/WallMode.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Full
path: ../TinyLife/World/WallMode.cs
startLine: 31
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: A wall mode that represents a wall that is rendered in full, without any holes in it
example: []
syntax:
content: public static readonly WallMode Full
return:
type: TinyLife.World.WallMode
content.vb: Public Shared ReadOnly Full As WallMode
- uid: TinyLife.World.WallMode.SmallWindow
commentId: F:TinyLife.World.WallMode.SmallWindow
id: SmallWindow
parent: TinyLife.World.WallMode
langs:
- csharp
- vb
name: SmallWindow
nameWithType: WallMode.SmallWindow
fullName: TinyLife.World.WallMode.SmallWindow
type: Field
source:
remote:
path: TinyLife/World/WallMode.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: SmallWindow
path: ../TinyLife/World/WallMode.cs
startLine: 35
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: A wall mode that represents a wall with a small, rectanglular window in it
example: []
syntax:
content: public static readonly WallMode SmallWindow
return:
type: TinyLife.World.WallMode
content.vb: Public Shared ReadOnly SmallWindow As WallMode
- uid: TinyLife.World.WallMode.Door
commentId: F:TinyLife.World.WallMode.Door
id: Door
parent: TinyLife.World.WallMode
langs:
- csharp
- vb
name: Door
nameWithType: WallMode.Door
fullName: TinyLife.World.WallMode.Door
type: Field
source:
remote:
path: TinyLife/World/WallMode.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Door
path: ../TinyLife/World/WallMode.cs
startLine: 39
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: A wall mode that represents a wall with a door-shaped hole in it
example: []
syntax:
content: public static readonly WallMode Door
return:
type: TinyLife.World.WallMode
content.vb: Public Shared ReadOnly Door As WallMode
- uid: TinyLife.World.WallMode.Roof
commentId: F:TinyLife.World.WallMode.Roof
id: Roof
parent: TinyLife.World.WallMode
langs:
- csharp
- vb
name: Roof
nameWithType: WallMode.Roof
fullName: TinyLife.World.WallMode.Roof
type: Field
source:
remote:
path: TinyLife/World/WallMode.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Roof
path: ../TinyLife/World/WallMode.cs
startLine: 43
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: A wall mode that represents a wall used on the faces of a <xref href="TinyLife.World.Roof" data-throw-if-not-resolved="false"></xref> that are straight
example: []
syntax:
content: public static readonly WallMode Roof
return:
type: TinyLife.World.WallMode
content.vb: Public Shared ReadOnly Roof As WallMode
- uid: TinyLife.World.WallMode.RoofGable
commentId: F:TinyLife.World.WallMode.RoofGable
id: RoofGable
parent: TinyLife.World.WallMode
langs:
- csharp
- vb
name: RoofGable
nameWithType: WallMode.RoofGable
fullName: TinyLife.World.WallMode.RoofGable
type: Field
source:
remote:
path: TinyLife/World/WallMode.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: RoofGable
path: ../TinyLife/World/WallMode.cs
startLine: 47
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: A wall mode that represents a wall used on the faces of a <xref href="TinyLife.World.Roof" data-throw-if-not-resolved="false"></xref> that are gabled
example: []
syntax:
content: public static readonly WallMode RoofGable
return:
type: TinyLife.World.WallMode
content.vb: Public Shared ReadOnly RoofGable As WallMode
- uid: TinyLife.World.WallMode.RoofGableInverse
commentId: F:TinyLife.World.WallMode.RoofGableInverse
id: RoofGableInverse
parent: TinyLife.World.WallMode
langs:
- csharp
- vb
name: RoofGableInverse
nameWithType: WallMode.RoofGableInverse
fullName: TinyLife.World.WallMode.RoofGableInverse
type: Field
source:
remote:
path: TinyLife/World/WallMode.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: RoofGableInverse
path: ../TinyLife/World/WallMode.cs
startLine: 51
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: A wall mode that represents a wall used on the faces of a <xref href="TinyLife.World.Roof" data-throw-if-not-resolved="false"></xref> that are gabled in the opposite direction as <xref href="TinyLife.World.WallMode.RoofGable" data-throw-if-not-resolved="false"></xref>
example: []
syntax:
content: public static readonly WallMode RoofGableInverse
return:
type: TinyLife.World.WallMode
content.vb: Public Shared ReadOnly RoofGableInverse As WallMode
- uid: TinyLife.World.WallMode.LongWindow
commentId: F:TinyLife.World.WallMode.LongWindow
id: LongWindow
parent: TinyLife.World.WallMode
langs:
- csharp
- vb
name: LongWindow
nameWithType: WallMode.LongWindow
fullName: TinyLife.World.WallMode.LongWindow
type: Field
source:
remote:
path: TinyLife/World/WallMode.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: LongWindow
path: ../TinyLife/World/WallMode.cs
startLine: 55
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: A long window with a similar width to <xref href="TinyLife.World.WallMode.SmallWindow" data-throw-if-not-resolved="false"></xref>
example: []
syntax:
content: public static readonly WallMode LongWindow
return:
type: TinyLife.World.WallMode
content.vb: Public Shared ReadOnly LongWindow As WallMode
- uid: TinyLife.World.WallMode.NarrowWideTop
commentId: F:TinyLife.World.WallMode.NarrowWideTop
id: NarrowWideTop
parent: TinyLife.World.WallMode
langs:
- csharp
- vb
name: NarrowWideTop
nameWithType: WallMode.NarrowWideTop
fullName: TinyLife.World.WallMode.NarrowWideTop
type: Field
source:
remote:
path: TinyLife/World/WallMode.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: NarrowWideTop
path: ../TinyLife/World/WallMode.cs
startLine: 59
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: A bathroom-style window that is high up on the wall and wide but not very tall.
example: []
syntax:
content: public static readonly WallMode NarrowWideTop
return:
type: TinyLife.World.WallMode
content.vb: Public Shared ReadOnly NarrowWideTop As WallMode
- uid: TinyLife.World.WallMode.NarrowLong
commentId: F:TinyLife.World.WallMode.NarrowLong
id: NarrowLong
parent: TinyLife.World.WallMode
langs:
- csharp
- vb
name: NarrowLong
nameWithType: WallMode.NarrowLong
fullName: TinyLife.World.WallMode.NarrowLong
type: Field
source:
remote:
path: TinyLife/World/WallMode.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: NarrowLong
path: ../TinyLife/World/WallMode.cs
startLine: 63
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: A long window with a very low width and the same length as <xref href="TinyLife.World.WallMode.LongWindow" data-throw-if-not-resolved="false"></xref>.
example: []
syntax:
content: public static readonly WallMode NarrowLong
return:
type: TinyLife.World.WallMode
content.vb: Public Shared ReadOnly NarrowLong As WallMode
- uid: TinyLife.World.WallMode.FullSizeWindow
commentId: F:TinyLife.World.WallMode.FullSizeWindow
id: FullSizeWindow
parent: TinyLife.World.WallMode
langs:
- csharp
- vb
name: FullSizeWindow
nameWithType: WallMode.FullSizeWindow
fullName: TinyLife.World.WallMode.FullSizeWindow
type: Field
source:
remote:
path: TinyLife/World/WallMode.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: FullSizeWindow
path: ../TinyLife/World/WallMode.cs
startLine: 67
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: A full-size window that leaves almost none of the wall, except for a small sliver at the top.
example: []
syntax:
content: public static readonly WallMode FullSizeWindow
return:
type: TinyLife.World.WallMode
content.vb: Public Shared ReadOnly FullSizeWindow As WallMode
- uid: TinyLife.World.WallMode.OutlineOnly
commentId: F:TinyLife.World.WallMode.OutlineOnly
id: OutlineOnly
parent: TinyLife.World.WallMode
langs:
- csharp
- vb
name: OutlineOnly
nameWithType: WallMode.OutlineOnly
fullName: TinyLife.World.WallMode.OutlineOnly
type: Field
source:
remote:
path: TinyLife/World/WallMode.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: OutlineOnly
path: ../TinyLife/World/WallMode.cs
startLine: 71
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: A full-size window that leaves almost none of the wall, just a one-pixel outline around the whole wall.
example: []
syntax:
content: public static readonly WallMode OutlineOnly
return:
type: TinyLife.World.WallMode
content.vb: Public Shared ReadOnly OutlineOnly As WallMode
- uid: TinyLife.World.WallMode.StairsBottom
commentId: F:TinyLife.World.WallMode.StairsBottom
id: StairsBottom
parent: TinyLife.World.WallMode
langs:
- csharp
- vb
name: StairsBottom
nameWithType: WallMode.StairsBottom
fullName: TinyLife.World.WallMode.StairsBottom
type: Field
source:
remote:
path: TinyLife/World/WallMode.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: StairsBottom
path: ../TinyLife/World/WallMode.cs
startLine: 75
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: A wall mode that represents the triangle-like areas at the bottom half of <xref href="TinyLife.World.Stairs" data-throw-if-not-resolved="false"></xref>.
example: []
syntax:
content: public static readonly WallMode[] StairsBottom
return:
type: TinyLife.World.WallMode[]
content.vb: Public Shared ReadOnly StairsBottom As WallMode()
- uid: TinyLife.World.WallMode.StairsTop
commentId: F:TinyLife.World.WallMode.StairsTop
id: StairsTop
parent: TinyLife.World.WallMode
langs:
- csharp
- vb
name: StairsTop
nameWithType: WallMode.StairsTop
fullName: TinyLife.World.WallMode.StairsTop
type: Field
source:
remote:
path: TinyLife/World/WallMode.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: StairsTop
path: ../TinyLife/World/WallMode.cs
startLine: 79
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: A wall mode that represents the triangle-like areas at the bottom half of <xref href="TinyLife.World.Stairs" data-throw-if-not-resolved="false"></xref>.
example: []
syntax:
content: public static readonly WallMode[] StairsTop
return:
type: TinyLife.World.WallMode[]
content.vb: Public Shared ReadOnly StairsTop As WallMode()
- uid: TinyLife.World.WallMode.MaskTexture
commentId: F:TinyLife.World.WallMode.MaskTexture
id: MaskTexture
parent: TinyLife.World.WallMode
langs:
- csharp
- vb
name: MaskTexture
nameWithType: WallMode.MaskTexture
fullName: TinyLife.World.WallMode.MaskTexture
type: Field
source:
remote:
path: TinyLife/World/WallMode.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: MaskTexture
path: ../TinyLife/World/WallMode.cs
startLine: 85
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: >-
The texture that is used as a mask when masking <xref href="TinyLife.World.Wallpaper" data-throw-if-not-resolved="false"></xref> using <xref href="TinyLife.World.WallMode.MaskWallpaper(MLEM.Extensions.TextureExtensions.TextureData%2cMLEM.Extensions.TextureExtensions.TextureData%2cMLEM.Extensions.TextureExtensions.TextureData%2cMicrosoft.Xna.Framework.Point%2cMicrosoft.Xna.Framework.Point%2cMicrosoft.Xna.Framework.Point%2cMicrosoft.Xna.Framework.Point)" data-throw-if-not-resolved="false"></xref>.
Each pixel on the mask that is non-transparent will be removed from the <xref href="TinyLife.World.Wallpaper" data-throw-if-not-resolved="false"></xref>.
example: []
syntax:
content: public readonly UniformTextureAtlas MaskTexture
return:
type: MLEM.Textures.UniformTextureAtlas
content.vb: Public ReadOnly MaskTexture As UniformTextureAtlas
- uid: TinyLife.World.WallMode.MaskPosition
commentId: F:TinyLife.World.WallMode.MaskPosition
id: MaskPosition
parent: TinyLife.World.WallMode
langs:
- csharp
- vb
name: MaskPosition
nameWithType: WallMode.MaskPosition
fullName: TinyLife.World.WallMode.MaskPosition
type: Field
source:
remote:
path: TinyLife/World/WallMode.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: MaskPosition
path: ../TinyLife/World/WallMode.cs
startLine: 90
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: >-
The position on the <xref href="TinyLife.World.WallMode.MaskTexture" data-throw-if-not-resolved="false"></xref> that the mask is at, in texture region coordinates similar to <xref href="MLEM.Textures.UniformTextureAtlas" data-throw-if-not-resolved="false"></xref>.
Each pixel on the mask that is non-transparent will be removed from the <xref href="TinyLife.World.Wallpaper" data-throw-if-not-resolved="false"></xref>.
example: []
syntax:
content: public readonly Point MaskPosition
return:
type: Microsoft.Xna.Framework.Point
content.vb: Public ReadOnly MaskPosition As Point
- uid: TinyLife.World.WallMode.#ctor(MLEM.Textures.UniformTextureAtlas,Microsoft.Xna.Framework.Point)
commentId: M:TinyLife.World.WallMode.#ctor(MLEM.Textures.UniformTextureAtlas,Microsoft.Xna.Framework.Point)
id: '#ctor(MLEM.Textures.UniformTextureAtlas,Microsoft.Xna.Framework.Point)'
parent: TinyLife.World.WallMode
langs:
- csharp
- vb
name: WallMode(UniformTextureAtlas, Point)
nameWithType: WallMode.WallMode(UniformTextureAtlas, Point)
fullName: TinyLife.World.WallMode.WallMode(MLEM.Textures.UniformTextureAtlas, Microsoft.Xna.Framework.Point)
type: Constructor
source:
remote:
path: TinyLife/World/WallMode.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: .ctor
path: ../TinyLife/World/WallMode.cs
startLine: 99
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: >-
Creates a new wall mode with the given mask settings.
Each pixel on the mask that is non-transparent will be removed from the <xref href="TinyLife.World.Wallpaper" data-throw-if-not-resolved="false"></xref>.
example: []
syntax:
content: public WallMode(UniformTextureAtlas maskTexture, Point maskPosition)
parameters:
- id: maskTexture
type: MLEM.Textures.UniformTextureAtlas
description: The texture that is used as a mask when masking <xref href="TinyLife.World.Wallpaper" data-throw-if-not-resolved="false"></xref> using <xref href="TinyLife.World.WallMode.MaskWallpaper(MLEM.Extensions.TextureExtensions.TextureData%2cMLEM.Extensions.TextureExtensions.TextureData%2cMLEM.Extensions.TextureExtensions.TextureData%2cMicrosoft.Xna.Framework.Point%2cMicrosoft.Xna.Framework.Point%2cMicrosoft.Xna.Framework.Point%2cMicrosoft.Xna.Framework.Point)" data-throw-if-not-resolved="false"></xref>.
- id: maskPosition
type: Microsoft.Xna.Framework.Point
description: The position on the <xref href="TinyLife.World.WallMode.MaskTexture" data-throw-if-not-resolved="false"></xref> that the mask is at, in texture region coordinates similar to <xref href="MLEM.Textures.UniformTextureAtlas" data-throw-if-not-resolved="false"></xref>.
content.vb: Public Sub New(maskTexture As UniformTextureAtlas, maskPosition As Point)
overload: TinyLife.World.WallMode.#ctor*
nameWithType.vb: WallMode.New(UniformTextureAtlas, Point)
fullName.vb: TinyLife.World.WallMode.New(MLEM.Textures.UniformTextureAtlas, Microsoft.Xna.Framework.Point)
name.vb: New(UniformTextureAtlas, Point)
- uid: TinyLife.World.WallMode.OffsetTextureRegion(Microsoft.Xna.Framework.Point,System.Boolean,System.Boolean)
commentId: M:TinyLife.World.WallMode.OffsetTextureRegion(Microsoft.Xna.Framework.Point,System.Boolean,System.Boolean)
id: OffsetTextureRegion(Microsoft.Xna.Framework.Point,System.Boolean,System.Boolean)
parent: TinyLife.World.WallMode
langs:
- csharp
- vb
name: OffsetTextureRegion(Point, bool, bool)
nameWithType: WallMode.OffsetTextureRegion(Point, bool, bool)
fullName: TinyLife.World.WallMode.OffsetTextureRegion(Microsoft.Xna.Framework.Point, bool, bool)
type: Method
source:
remote:
path: TinyLife/World/WallMode.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: OffsetTextureRegion
path: ../TinyLife/World/WallMode.cs
startLine: 111
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: Offsets the given texture region based on this wall mode, causing the returned texture region to contain the same <xref href="TinyLife.World.Wallpaper" data-throw-if-not-resolved="false"></xref>, but with this wall mode's cutout.
example: []
syntax:
content: public Point OffsetTextureRegion(Point region, bool vertical, bool isDown)
parameters:
- id: region
type: Microsoft.Xna.Framework.Point
description: The texture region location to offset.
- id: vertical
type: System.Boolean
description: Whether the texture region location returned should be a vertical wall.
- id: isDown
type: System.Boolean
description: Whether the texture region location returned should be in the <xref href="TinyLife.WallDisplay.Down" data-throw-if-not-resolved="false"></xref> display mode.
return:
type: Microsoft.Xna.Framework.Point
description: The offset texture region position.
content.vb: Public Function OffsetTextureRegion(region As Point, vertical As Boolean, isDown As Boolean) As Point
overload: TinyLife.World.WallMode.OffsetTextureRegion*
nameWithType.vb: WallMode.OffsetTextureRegion(Point, Boolean, Boolean)
fullName.vb: TinyLife.World.WallMode.OffsetTextureRegion(Microsoft.Xna.Framework.Point, Boolean, Boolean)
name.vb: OffsetTextureRegion(Point, Boolean, Boolean)
- uid: TinyLife.World.WallMode.Register(TinyLife.World.WallMode)
commentId: M:TinyLife.World.WallMode.Register(TinyLife.World.WallMode)
id: Register(TinyLife.World.WallMode)
parent: TinyLife.World.WallMode
langs:
- csharp
- vb
name: Register(WallMode)
nameWithType: WallMode.Register(WallMode)
fullName: TinyLife.World.WallMode.Register(TinyLife.World.WallMode)
type: Method
source:
remote:
path: TinyLife/World/WallMode.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Register
path: ../TinyLife/World/WallMode.cs
startLine: 125
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: Registers the given <xref href="TinyLife.World.WallMode" data-throw-if-not-resolved="false"></xref> to the <xref href="TinyLife.World.WallMode.Modes" data-throw-if-not-resolved="false"></xref> registry.
example: []
syntax:
content: public static WallMode Register(WallMode mode)
parameters:
- id: mode
type: TinyLife.World.WallMode
description: The mode to register.
return:
type: TinyLife.World.WallMode
description: The <code class="paramref">mode</code> passed, for chaining.
content.vb: Public Shared Function Register(mode As WallMode) As WallMode
overload: TinyLife.World.WallMode.Register*
- uid: TinyLife.World.WallMode.ApplyMasks(Microsoft.Xna.Framework.Graphics.Texture2D,System.Int32,System.Int32,MLEM.Data.RuntimeTexturePacker,System.Action{System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion}})
commentId: M:TinyLife.World.WallMode.ApplyMasks(Microsoft.Xna.Framework.Graphics.Texture2D,System.Int32,System.Int32,MLEM.Data.RuntimeTexturePacker,System.Action{System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion}})
id: ApplyMasks(Microsoft.Xna.Framework.Graphics.Texture2D,System.Int32,System.Int32,MLEM.Data.RuntimeTexturePacker,System.Action{System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion}})
parent: TinyLife.World.WallMode
langs:
- csharp
- vb
name: ApplyMasks(Texture2D, int, int, RuntimeTexturePacker, Action<Dictionary<Point, TextureRegion>>)
nameWithType: WallMode.ApplyMasks(Texture2D, int, int, RuntimeTexturePacker, Action<Dictionary<Point, TextureRegion>>)
fullName: TinyLife.World.WallMode.ApplyMasks(Microsoft.Xna.Framework.Graphics.Texture2D, int, int, MLEM.Data.RuntimeTexturePacker, System.Action<System.Collections.Generic.Dictionary<Microsoft.Xna.Framework.Point, MLEM.Textures.TextureRegion>>)
type: Method
source:
remote:
path: TinyLife/World/WallMode.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ApplyMasks
path: ../TinyLife/World/WallMode.cs
startLine: 140
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: >-
Applies the game's predefined wallpaper maskings (based on <xref href="TinyLife.World.WallMode" data-throw-if-not-resolved="false"></xref>) to the given wallpaper texture.
When adding custom <xref href="TinyLife.World.Wallpaper" data-throw-if-not-resolved="false"></xref> types, this method should be used.
example: []
syntax:
content: public static UniformTextureAtlas ApplyMasks(Texture2D wallpapers, int regionAmountX, int regionAmountY, RuntimeTexturePacker packer = null, Action<Dictionary<Point, TextureRegion>> result = null)
parameters:
- id: wallpapers
type: Microsoft.Xna.Framework.Graphics.Texture2D
description: The texture to mask
- id: regionAmountX
type: System.Int32
description: The amount of texture regions on the x axis
- id: regionAmountY
type: System.Int32
description: The amount of texture regions on the y axis
- id: packer
type: MLEM.Data.RuntimeTexturePacker
description: The texture packer to pack the resulting texture with, or null to skip packing the texture
- id: result
type: System.Action{System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion}}
description: A function that is called when the <code class="paramref">packer</code> packed the masked texture, which yields the resulting texture atlas
return:
type: MLEM.Textures.UniformTextureAtlas
content.vb: Public Shared Function ApplyMasks(wallpapers As Texture2D, regionAmountX As Integer, regionAmountY As Integer, packer As RuntimeTexturePacker = Nothing, result As Action(Of Dictionary(Of Point, TextureRegion)) = Nothing) As UniformTextureAtlas
overload: TinyLife.World.WallMode.ApplyMasks*
nameWithType.vb: WallMode.ApplyMasks(Texture2D, Integer, Integer, RuntimeTexturePacker, Action(Of Dictionary(Of Point, TextureRegion)))
fullName.vb: TinyLife.World.WallMode.ApplyMasks(Microsoft.Xna.Framework.Graphics.Texture2D, Integer, Integer, MLEM.Data.RuntimeTexturePacker, System.Action(Of System.Collections.Generic.Dictionary(Of Microsoft.Xna.Framework.Point, MLEM.Textures.TextureRegion)))
name.vb: ApplyMasks(Texture2D, Integer, Integer, RuntimeTexturePacker, Action(Of Dictionary(Of Point, TextureRegion)))
references:
- uid: TinyLife.World.Wall
commentId: T:TinyLife.World.Wall
parent: TinyLife.World
href: TinyLife.World.Wall.html
name: Wall
nameWithType: Wall
fullName: TinyLife.World.Wall
- uid: TinyLife.World.Opening
commentId: T:TinyLife.World.Opening
parent: TinyLife.World
href: TinyLife.World.Opening.html
name: Opening
nameWithType: Opening
fullName: TinyLife.World.Opening
- uid: TinyLife.World.WallMode.Roof
commentId: F:TinyLife.World.WallMode.Roof
href: TinyLife.World.WallMode.html#TinyLife_World_WallMode_Roof
name: Roof
nameWithType: WallMode.Roof
fullName: TinyLife.World.WallMode.Roof
- uid: TinyLife.World
commentId: N:TinyLife.World
href: TinyLife.html
name: TinyLife.World
nameWithType: TinyLife.World
fullName: TinyLife.World
spec.csharp:
- uid: TinyLife
name: TinyLife
href: TinyLife.html
- name: .
- uid: TinyLife.World
name: World
href: TinyLife.World.html
spec.vb:
- uid: TinyLife
name: TinyLife
href: TinyLife.html
- name: .
- uid: TinyLife.World
name: World
href: TinyLife.World.html
- uid: System.Object
commentId: T:System.Object
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
name: object
nameWithType: object
fullName: object
nameWithType.vb: Object
fullName.vb: Object
name.vb: Object
- uid: System.Object.Equals(System.Object)
commentId: M:System.Object.Equals(System.Object)
parent: System.Object
isExternal: true
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)
spec.csharp:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.Equals(System.Object,System.Object)
commentId: M:System.Object.Equals(System.Object,System.Object)
parent: System.Object
isExternal: true
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)
spec.csharp:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.GetHashCode
commentId: M:System.Object.GetHashCode
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
name: GetHashCode()
nameWithType: object.GetHashCode()
fullName: object.GetHashCode()
nameWithType.vb: Object.GetHashCode()
fullName.vb: Object.GetHashCode()
spec.csharp:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
- name: (
- name: )
spec.vb:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
- name: (
- name: )
- uid: System.Object.GetType
commentId: M:System.Object.GetType
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
name: GetType()
nameWithType: object.GetType()
fullName: object.GetType()
nameWithType.vb: Object.GetType()
fullName.vb: Object.GetType()
spec.csharp:
- uid: System.Object.GetType
name: GetType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
- name: (
- name: )
spec.vb:
- uid: System.Object.GetType
name: GetType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
- name: (
- name: )
- uid: System.Object.MemberwiseClone
commentId: M:System.Object.MemberwiseClone
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
name: MemberwiseClone()
nameWithType: object.MemberwiseClone()
fullName: object.MemberwiseClone()
nameWithType.vb: Object.MemberwiseClone()
fullName.vb: Object.MemberwiseClone()
spec.csharp:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
- name: (
- name: )
spec.vb:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
- name: (
- name: )
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
parent: System.Object
isExternal: true
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)
spec.csharp:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.ToString
commentId: M:System.Object.ToString
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
name: ToString()
nameWithType: object.ToString()
fullName: object.ToString()
nameWithType.vb: Object.ToString()
fullName.vb: Object.ToString()
spec.csharp:
- uid: System.Object.ToString
name: ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
- name: (
- name: )
spec.vb:
- uid: System.Object.ToString
name: ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
- name: (
- name: )
- uid: TinyLife.World.WallMode.TinyLife.Utilities.Extensions.JsonCopy``1
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
parent: TinyLife.Utilities.Extensions
definition: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
name: JsonCopy<WallMode>(WallMode)
nameWithType: Extensions.JsonCopy<WallMode>(WallMode)
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.World.WallMode>(TinyLife.World.WallMode)
nameWithType.vb: Extensions.JsonCopy(Of WallMode)(WallMode)
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.World.WallMode)(TinyLife.World.WallMode)
name.vb: JsonCopy(Of WallMode)(WallMode)
spec.csharp:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.World.WallMode)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- name: <
- uid: TinyLife.World.WallMode
name: WallMode
href: TinyLife.World.WallMode.html
- name: '>'
- name: (
- uid: TinyLife.World.WallMode
name: WallMode
href: TinyLife.World.WallMode.html
- name: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.World.WallMode)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- name: (
- name: Of
- name: " "
- uid: TinyLife.World.WallMode
name: WallMode
href: TinyLife.World.WallMode.html
- name: )
- name: (
- uid: TinyLife.World.WallMode
name: WallMode
href: TinyLife.World.WallMode.html
- name: )
- uid: System
commentId: N:System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System
nameWithType: System
fullName: System
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
name: JsonCopy<T>(T)
nameWithType: Extensions.JsonCopy<T>(T)
fullName: TinyLife.Utilities.Extensions.JsonCopy<T>(T)
nameWithType.vb: Extensions.JsonCopy(Of T)(T)
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of T)(T)
name.vb: JsonCopy(Of T)(T)
spec.csharp:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- name: <
- name: T
- name: '>'
- name: (
- name: T
- name: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- name: (
- name: Of
- name: " "
- name: T
- name: )
- name: (
- name: T
- name: )
- uid: TinyLife.Utilities.Extensions
commentId: T:TinyLife.Utilities.Extensions
parent: TinyLife.Utilities
href: TinyLife.Utilities.Extensions.html
name: Extensions
nameWithType: Extensions
fullName: TinyLife.Utilities.Extensions
- uid: TinyLife.Utilities
commentId: N:TinyLife.Utilities
href: TinyLife.html
name: TinyLife.Utilities
nameWithType: TinyLife.Utilities
fullName: TinyLife.Utilities
spec.csharp:
- uid: TinyLife
name: TinyLife
href: TinyLife.html
- name: .
- uid: TinyLife.Utilities
name: Utilities
href: TinyLife.Utilities.html
spec.vb:
- uid: TinyLife
name: TinyLife
href: TinyLife.html
- name: .
- uid: TinyLife.Utilities
name: Utilities
href: TinyLife.Utilities.html
- uid: System.Collections.ObjectModel.ReadOnlyCollection{TinyLife.World.WallMode}
commentId: T:System.Collections.ObjectModel.ReadOnlyCollection{TinyLife.World.WallMode}
parent: System.Collections.ObjectModel
definition: System.Collections.ObjectModel.ReadOnlyCollection`1
href: https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection-1
name: ReadOnlyCollection<WallMode>
nameWithType: ReadOnlyCollection<WallMode>
fullName: System.Collections.ObjectModel.ReadOnlyCollection<TinyLife.World.WallMode>
nameWithType.vb: ReadOnlyCollection(Of WallMode)
fullName.vb: System.Collections.ObjectModel.ReadOnlyCollection(Of TinyLife.World.WallMode)
name.vb: ReadOnlyCollection(Of WallMode)
spec.csharp:
- uid: System.Collections.ObjectModel.ReadOnlyCollection`1
name: ReadOnlyCollection
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection-1
- name: <
- uid: TinyLife.World.WallMode
name: WallMode
href: TinyLife.World.WallMode.html
- name: '>'
spec.vb:
- uid: System.Collections.ObjectModel.ReadOnlyCollection`1
name: ReadOnlyCollection
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection-1
- name: (
- name: Of
- name: " "
- uid: TinyLife.World.WallMode
name: WallMode
href: TinyLife.World.WallMode.html
- name: )
- uid: System.Collections.ObjectModel.ReadOnlyCollection`1
commentId: T:System.Collections.ObjectModel.ReadOnlyCollection`1
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection-1
name: ReadOnlyCollection<T>
nameWithType: ReadOnlyCollection<T>
fullName: System.Collections.ObjectModel.ReadOnlyCollection<T>
nameWithType.vb: ReadOnlyCollection(Of T)
fullName.vb: System.Collections.ObjectModel.ReadOnlyCollection(Of T)
name.vb: ReadOnlyCollection(Of T)
spec.csharp:
- uid: System.Collections.ObjectModel.ReadOnlyCollection`1
name: ReadOnlyCollection
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection-1
- name: <
- name: T
- name: '>'
spec.vb:
- uid: System.Collections.ObjectModel.ReadOnlyCollection`1
name: ReadOnlyCollection
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection-1
- name: (
- name: Of
- name: " "
- name: T
- name: )
- uid: System.Collections.ObjectModel
commentId: N:System.Collections.ObjectModel
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System.Collections.ObjectModel
nameWithType: System.Collections.ObjectModel
fullName: System.Collections.ObjectModel
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.ObjectModel
name: ObjectModel
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.objectmodel
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.ObjectModel
name: ObjectModel
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.objectmodel
- uid: TinyLife.World.WallMode
commentId: T:TinyLife.World.WallMode
parent: TinyLife.World
href: TinyLife.World.WallMode.html
name: WallMode
nameWithType: WallMode
fullName: TinyLife.World.WallMode
- uid: TinyLife.World.Roof
commentId: T:TinyLife.World.Roof
parent: TinyLife.World
href: TinyLife.World.Roof.html
name: Roof
nameWithType: Roof
fullName: TinyLife.World.Roof
- uid: TinyLife.World.WallMode.RoofGable
commentId: F:TinyLife.World.WallMode.RoofGable
href: TinyLife.World.WallMode.html#TinyLife_World_WallMode_RoofGable
name: RoofGable
nameWithType: WallMode.RoofGable
fullName: TinyLife.World.WallMode.RoofGable
- uid: TinyLife.World.WallMode.SmallWindow
commentId: F:TinyLife.World.WallMode.SmallWindow
href: TinyLife.World.WallMode.html#TinyLife_World_WallMode_SmallWindow
name: SmallWindow
nameWithType: WallMode.SmallWindow
fullName: TinyLife.World.WallMode.SmallWindow
- uid: TinyLife.World.WallMode.LongWindow
commentId: F:TinyLife.World.WallMode.LongWindow
href: TinyLife.World.WallMode.html#TinyLife_World_WallMode_LongWindow
name: LongWindow
nameWithType: WallMode.LongWindow
fullName: TinyLife.World.WallMode.LongWindow
- uid: TinyLife.World.Stairs
commentId: T:TinyLife.World.Stairs
parent: TinyLife.World
href: TinyLife.World.Stairs.html
name: Stairs
nameWithType: Stairs
fullName: TinyLife.World.Stairs
- uid: TinyLife.World.WallMode[]
isExternal: true
href: TinyLife.World.WallMode.html
name: WallMode[]
nameWithType: WallMode[]
fullName: TinyLife.World.WallMode[]
nameWithType.vb: WallMode()
fullName.vb: TinyLife.World.WallMode()
name.vb: WallMode()
spec.csharp:
- uid: TinyLife.World.WallMode
name: WallMode
href: TinyLife.World.WallMode.html
- name: '['
- name: ']'
spec.vb:
- uid: TinyLife.World.WallMode
name: WallMode
href: TinyLife.World.WallMode.html
- name: (
- name: )
- uid: TinyLife.World.Wallpaper
commentId: T:TinyLife.World.Wallpaper
parent: TinyLife.World
href: TinyLife.World.Wallpaper.html
name: Wallpaper
nameWithType: Wallpaper
fullName: TinyLife.World.Wallpaper
- uid: TinyLife.World.WallMode.MaskWallpaper(MLEM.Extensions.TextureExtensions.TextureData,MLEM.Extensions.TextureExtensions.TextureData,MLEM.Extensions.TextureExtensions.TextureData,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point)
commentId: M:TinyLife.World.WallMode.MaskWallpaper(MLEM.Extensions.TextureExtensions.TextureData,MLEM.Extensions.TextureExtensions.TextureData,MLEM.Extensions.TextureExtensions.TextureData,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point)
isExternal: true
href: TinyLife.World.WallMode.html#TinyLife_World_WallMode_MaskWallpaper_MLEM_Extensions_TextureExtensions_TextureData_MLEM_Extensions_TextureExtensions_TextureData_MLEM_Extensions_TextureExtensions_TextureData_Microsoft_Xna_Framework_Point_Microsoft_Xna_Framework_Point_Microsoft_Xna_Framework_Point_Microsoft_Xna_Framework_Point_
name: MaskWallpaper(TextureData, TextureData, TextureData, Point, Point, Point, Point)
nameWithType: WallMode.MaskWallpaper(TextureExtensions.TextureData, TextureExtensions.TextureData, TextureExtensions.TextureData, Point, Point, Point, Point)
fullName: TinyLife.World.WallMode.MaskWallpaper(MLEM.Extensions.TextureExtensions.TextureData, MLEM.Extensions.TextureExtensions.TextureData, MLEM.Extensions.TextureExtensions.TextureData, Microsoft.Xna.Framework.Point, Microsoft.Xna.Framework.Point, Microsoft.Xna.Framework.Point, Microsoft.Xna.Framework.Point)
spec.csharp:
- uid: TinyLife.World.WallMode.MaskWallpaper(MLEM.Extensions.TextureExtensions.TextureData,MLEM.Extensions.TextureExtensions.TextureData,MLEM.Extensions.TextureExtensions.TextureData,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point)
name: MaskWallpaper
href: TinyLife.World.WallMode.html#TinyLife_World_WallMode_MaskWallpaper_MLEM_Extensions_TextureExtensions_TextureData_MLEM_Extensions_TextureExtensions_TextureData_MLEM_Extensions_TextureExtensions_TextureData_Microsoft_Xna_Framework_Point_Microsoft_Xna_Framework_Point_Microsoft_Xna_Framework_Point_Microsoft_Xna_Framework_Point_
- name: (
- uid: MLEM.Extensions.TextureExtensions.TextureData
name: TextureData
isExternal: true
- name: ','
- name: " "
- uid: MLEM.Extensions.TextureExtensions.TextureData
name: TextureData
isExternal: true
- name: ','
- name: " "
- uid: MLEM.Extensions.TextureExtensions.TextureData
name: TextureData
isExternal: true
- name: ','
- name: " "
- uid: Microsoft.Xna.Framework.Point
name: Point
isExternal: true
- name: ','
- name: " "
- uid: Microsoft.Xna.Framework.Point
name: Point
isExternal: true
- name: ','
- name: " "
- uid: Microsoft.Xna.Framework.Point
name: Point
isExternal: true
- name: ','
- name: " "
- uid: Microsoft.Xna.Framework.Point
name: Point
isExternal: true
- name: )
spec.vb:
- uid: TinyLife.World.WallMode.MaskWallpaper(MLEM.Extensions.TextureExtensions.TextureData,MLEM.Extensions.TextureExtensions.TextureData,MLEM.Extensions.TextureExtensions.TextureData,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point)
name: MaskWallpaper
href: TinyLife.World.WallMode.html#TinyLife_World_WallMode_MaskWallpaper_MLEM_Extensions_TextureExtensions_TextureData_MLEM_Extensions_TextureExtensions_TextureData_MLEM_Extensions_TextureExtensions_TextureData_Microsoft_Xna_Framework_Point_Microsoft_Xna_Framework_Point_Microsoft_Xna_Framework_Point_Microsoft_Xna_Framework_Point_
- name: (
- uid: MLEM.Extensions.TextureExtensions.TextureData
name: TextureData
isExternal: true
- name: ','
- name: " "
- uid: MLEM.Extensions.TextureExtensions.TextureData
name: TextureData
isExternal: true
- name: ','
- name: " "
- uid: MLEM.Extensions.TextureExtensions.TextureData
name: TextureData
isExternal: true
- name: ','
- name: " "
- uid: Microsoft.Xna.Framework.Point
name: Point
isExternal: true
- name: ','
- name: " "
- uid: Microsoft.Xna.Framework.Point
name: Point
isExternal: true
- name: ','
- name: " "
- uid: Microsoft.Xna.Framework.Point
name: Point
isExternal: true
- name: ','
- name: " "
- uid: Microsoft.Xna.Framework.Point
name: Point
isExternal: true
- name: )
- 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
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
- uid: TinyLife.World.WallMode.MaskTexture
commentId: F:TinyLife.World.WallMode.MaskTexture
href: TinyLife.World.WallMode.html#TinyLife_World_WallMode_MaskTexture
name: MaskTexture
nameWithType: WallMode.MaskTexture
fullName: TinyLife.World.WallMode.MaskTexture
- uid: Microsoft.Xna.Framework.Point
commentId: T:Microsoft.Xna.Framework.Point
parent: Microsoft.Xna.Framework
isExternal: true
name: Point
nameWithType: Point
fullName: Microsoft.Xna.Framework.Point
- uid: Microsoft.Xna.Framework
commentId: N:Microsoft.Xna.Framework
isExternal: true
name: Microsoft.Xna.Framework
nameWithType: Microsoft.Xna.Framework
fullName: Microsoft.Xna.Framework
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
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
- uid: TinyLife.World.WallMode.#ctor*
commentId: Overload:TinyLife.World.WallMode.#ctor
href: TinyLife.World.WallMode.html#TinyLife_World_WallMode__ctor_MLEM_Textures_UniformTextureAtlas_Microsoft_Xna_Framework_Point_
name: WallMode
nameWithType: WallMode.WallMode
fullName: TinyLife.World.WallMode.WallMode
nameWithType.vb: WallMode.New
fullName.vb: TinyLife.World.WallMode.New
name.vb: New
- uid: TinyLife.WallDisplay.Down
commentId: F:TinyLife.WallDisplay.Down
href: TinyLife.WallDisplay.html#TinyLife_WallDisplay_Down
name: Down
nameWithType: WallDisplay.Down
fullName: TinyLife.WallDisplay.Down
- uid: TinyLife.World.WallMode.OffsetTextureRegion*
commentId: Overload:TinyLife.World.WallMode.OffsetTextureRegion
href: TinyLife.World.WallMode.html#TinyLife_World_WallMode_OffsetTextureRegion_Microsoft_Xna_Framework_Point_System_Boolean_System_Boolean_
name: OffsetTextureRegion
nameWithType: WallMode.OffsetTextureRegion
fullName: TinyLife.World.WallMode.OffsetTextureRegion
- uid: System.Boolean
commentId: T:System.Boolean
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
name: bool
nameWithType: bool
fullName: bool
nameWithType.vb: Boolean
fullName.vb: Boolean
name.vb: Boolean
- uid: TinyLife.World.WallMode.Modes
commentId: F:TinyLife.World.WallMode.Modes
href: TinyLife.World.WallMode.html#TinyLife_World_WallMode_Modes
name: Modes
nameWithType: WallMode.Modes
fullName: TinyLife.World.WallMode.Modes
- uid: TinyLife.World.WallMode.Register*
commentId: Overload:TinyLife.World.WallMode.Register
href: TinyLife.World.WallMode.html#TinyLife_World_WallMode_Register_TinyLife_World_WallMode_
name: Register
nameWithType: WallMode.Register
fullName: TinyLife.World.WallMode.Register
- uid: TinyLife.World.WallMode.ApplyMasks*
commentId: Overload:TinyLife.World.WallMode.ApplyMasks
href: TinyLife.World.WallMode.html#TinyLife_World_WallMode_ApplyMasks_Microsoft_Xna_Framework_Graphics_Texture2D_System_Int32_System_Int32_MLEM_Data_RuntimeTexturePacker_System_Action_System_Collections_Generic_Dictionary_Microsoft_Xna_Framework_Point_MLEM_Textures_TextureRegion___
name: ApplyMasks
nameWithType: WallMode.ApplyMasks
fullName: TinyLife.World.WallMode.ApplyMasks
- 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
- 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: MLEM.Data.RuntimeTexturePacker
commentId: T:MLEM.Data.RuntimeTexturePacker
parent: MLEM.Data
isExternal: true
name: RuntimeTexturePacker
nameWithType: RuntimeTexturePacker
fullName: MLEM.Data.RuntimeTexturePacker
- uid: System.Action{System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion}}
commentId: T:System.Action{System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion}}
parent: System
definition: System.Action`1
href: https://learn.microsoft.com/dotnet/api/system.action-1
name: Action<Dictionary<Point, TextureRegion>>
nameWithType: Action<Dictionary<Point, TextureRegion>>
fullName: System.Action<System.Collections.Generic.Dictionary<Microsoft.Xna.Framework.Point, MLEM.Textures.TextureRegion>>
nameWithType.vb: Action(Of Dictionary(Of Point, TextureRegion))
fullName.vb: System.Action(Of System.Collections.Generic.Dictionary(Of Microsoft.Xna.Framework.Point, MLEM.Textures.TextureRegion))
name.vb: Action(Of Dictionary(Of Point, TextureRegion))
spec.csharp:
- uid: System.Action`1
name: Action
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.action-1
- name: <
- uid: System.Collections.Generic.Dictionary`2
name: Dictionary
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
- name: <
- uid: Microsoft.Xna.Framework.Point
name: Point
isExternal: true
- name: ','
- name: " "
- uid: MLEM.Textures.TextureRegion
name: TextureRegion
isExternal: true
- name: '>'
- name: '>'
spec.vb:
- uid: System.Action`1
name: Action
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.action-1
- name: (
- name: Of
- name: " "
- uid: System.Collections.Generic.Dictionary`2
name: Dictionary
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
- name: (
- name: Of
- name: " "
- uid: Microsoft.Xna.Framework.Point
name: Point
isExternal: true
- name: ','
- name: " "
- uid: MLEM.Textures.TextureRegion
name: TextureRegion
isExternal: true
- name: )
- name: )
- 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
- uid: MLEM.Data
commentId: N:MLEM.Data
isExternal: true
name: MLEM.Data
nameWithType: MLEM.Data
fullName: MLEM.Data
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
- uid: System.Action`1
commentId: T:System.Action`1
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.action-1
name: Action<T>
nameWithType: Action<T>
fullName: System.Action<T>
nameWithType.vb: Action(Of T)
fullName.vb: System.Action(Of T)
name.vb: Action(Of T)
spec.csharp:
- uid: System.Action`1
name: Action
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.action-1
- name: <
- name: T
- name: '>'
spec.vb:
- uid: System.Action`1
name: Action
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.action-1
- name: (
- name: Of
- name: " "
- name: T
- name: )