TinyLifeWeb/docs/api/TinyLife.Tools.PlayModeTool.yml
2024-04-14 17:55:54 +02:00

2101 lines
77 KiB
YAML

### YamlMime:ManagedReference
items:
- uid: TinyLife.Tools.PlayModeTool
commentId: T:TinyLife.Tools.PlayModeTool
id: PlayModeTool
parent: TinyLife.Tools
children:
- TinyLife.Tools.PlayModeTool.#ctor
- TinyLife.Tools.PlayModeTool.CanUndoRedo
- TinyLife.Tools.PlayModeTool.Closed
- TinyLife.Tools.PlayModeTool.OnUpdateStatsView
- TinyLife.Tools.PlayModeTool.Opened
- TinyLife.Tools.PlayModeTool.PlayEventSting(Microsoft.Xna.Framework.Audio.SoundEffect)
- TinyLife.Tools.PlayModeTool.Reload
- TinyLife.Tools.PlayModeTool.SelectedPerson
- TinyLife.Tools.PlayModeTool.SelectedStat
- TinyLife.Tools.PlayModeTool.SetSelectedPerson(TinyLife.Objects.Person)
- TinyLife.Tools.PlayModeTool.Update(Microsoft.Xna.Framework.GameTime,System.Boolean)
langs:
- csharp
- vb
name: PlayModeTool
nameWithType: PlayModeTool
fullName: TinyLife.Tools.PlayModeTool
type: Class
source:
remote:
path: TinyLife/Tools/PlayModeTool.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: PlayModeTool
path: ../TinyLife/Tools/PlayModeTool.cs
startLine: 28
assemblies:
- Tiny Life
namespace: TinyLife.Tools
summary: >-
A tool is a type of game mode that is currently active.
Tools are split up into the <xref href="TinyLife.Tools.Tool.PlayModeTool" data-throw-if-not-resolved="false"></xref> and <xref href="TinyLife.Tools.Tool.BuildTools" data-throw-if-not-resolved="false"></xref>, the latter of which holds all tools that can be found in the build menu.
example: []
syntax:
content: 'public class PlayModeTool : Tool'
content.vb: Public Class PlayModeTool Inherits Tool
inheritance:
- System.Object
- TinyLife.Tools.Tool
inheritedMembers:
- TinyLife.Tools.Tool.RemoveTool
- TinyLife.Tools.Tool.MoveTool
- TinyLife.Tools.Tool.PlayModeTool
- TinyLife.Tools.Tool.BuildTools
- TinyLife.Tools.Tool.SelectedObject
- TinyLife.Tools.Tool.SelectedWall
- TinyLife.Tools.Tool.SelectedRoof
- TinyLife.Tools.Tool.SelectedStairs
- TinyLife.Tools.Tool.IsRotateCwPressed
- TinyLife.Tools.Tool.IsRotateCcwPressed
- TinyLife.Tools.Tool.IsCopyPressed
- TinyLife.Tools.Tool.OnOpened
- TinyLife.Tools.Tool.OnClosed
- TinyLife.Tools.Tool.OnUpdate
- TinyLife.Tools.Tool.OnDraw
- TinyLife.Tools.Tool.OnInitBuildModeUi
- TinyLife.Tools.Tool.Input
- TinyLife.Tools.Tool.Map
- TinyLife.Tools.Tool.Money
- TinyLife.Tools.Tool.CurrentFloor
- TinyLife.Tools.Tool.Texture
- TinyLife.Tools.Tool.DisplayAsTab
- TinyLife.Tools.Tool.MousePos
- TinyLife.Tools.Tool.InitBuildModeUi(MLEM.Ui.Elements.Panel,MLEM.Ui.Elements.Panel)
- TinyLife.Tools.Tool.Draw(Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch,System.Boolean)
- TinyLife.Tools.Tool.GetMouseCursor
- TinyLife.Tools.Tool.CanPlaceForTooltip
- TinyLife.Tools.Tool.CanSwitchGameModes
- TinyLife.Tools.Tool.ShouldHighlightSelectedObject(System.Object)
- TinyLife.Tools.Tool.OnButtonCreated(MLEM.Ui.Elements.Button)
- TinyLife.Tools.Tool.IsOnLot(Microsoft.Xna.Framework.Point)
- TinyLife.Tools.Tool.ColorSelection(TinyLife.Utilities.ColorScheme[],System.Action{System.Int32,System.Int32},System.Func{System.Int32,System.Int32,System.Boolean})
- TinyLife.Tools.Tool.ColorSelection(TinyLife.Utilities.ColorScheme,System.Action{System.Int32},System.Func{System.Int32,System.Boolean})
- TinyLife.Tools.Tool.BuildModeButton(System.String,MLEM.Ui.Elements.Element.GenericCallback,MLEM.Ui.Elements.Element.DrawCallback,System.Single,MLEM.Textures.TextureRegion,System.Collections.Generic.IEnumerable{System.String},System.Nullable{System.Single})
- TinyLife.Tools.Tool.SelectFirstContentItem
- 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.Tools.PlayModeTool.TinyLife.Utilities.Extensions.JsonCopy``1
- uid: TinyLife.Tools.PlayModeTool.OnUpdateStatsView
commentId: E:TinyLife.Tools.PlayModeTool.OnUpdateStatsView
id: OnUpdateStatsView
parent: TinyLife.Tools.PlayModeTool
langs:
- csharp
- vb
name: OnUpdateStatsView
nameWithType: PlayModeTool.OnUpdateStatsView
fullName: TinyLife.Tools.PlayModeTool.OnUpdateStatsView
type: Event
source:
remote:
path: TinyLife/Tools/PlayModeTool.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: OnUpdateStatsView
path: ../TinyLife/Tools/PlayModeTool.cs
startLine: 43
assemblies:
- Tiny Life
namespace: TinyLife.Tools
summary: >-
An event that is invoked when the play mode tool's stats <xref href="MLEM.Ui.Elements.Panel" data-throw-if-not-resolved="false"></xref> is updated. This occurs when a <xref href="TinyLife.Tools.PlayModeTool.StatType" data-throw-if-not-resolved="false"></xref> tab is opened, or when a corresponding stat's information changes in a way that forces the panel to be refreshed.
During this even't <xref href="TinyLife.Mods.EventPhase.Pre" data-throw-if-not-resolved="false"></xref> phase, the previous content has not been removed from the <xref href="MLEM.Ui.Elements.Panel" data-throw-if-not-resolved="false"></xref> yet.
example: []
syntax:
content: public static event Action<(Person Person, PlayModeTool.StatType Stat, Panel Panel, EventPhase Phase)> OnUpdateStatsView
return:
type: System.Action{System.ValueTuple{TinyLife.Objects.Person,TinyLife.Tools.PlayModeTool.StatType,MLEM.Ui.Elements.Panel,TinyLife.Mods.EventPhase}}
content.vb: Public Shared Event OnUpdateStatsView As Action(Of (Person As Person, Stat As PlayModeTool.StatType, Panel As Panel, Phase As EventPhase))
- uid: TinyLife.Tools.PlayModeTool.SelectedPerson
commentId: P:TinyLife.Tools.PlayModeTool.SelectedPerson
id: SelectedPerson
parent: TinyLife.Tools.PlayModeTool
langs:
- csharp
- vb
name: SelectedPerson
nameWithType: PlayModeTool.SelectedPerson
fullName: TinyLife.Tools.PlayModeTool.SelectedPerson
type: Property
source:
remote:
path: TinyLife/Tools/PlayModeTool.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: SelectedPerson
path: ../TinyLife/Tools/PlayModeTool.cs
startLine: 48
assemblies:
- Tiny Life
namespace: TinyLife.Tools
summary: Stores the <xref href="TinyLife.Objects.Person" data-throw-if-not-resolved="false"></xref> that is currently selected
example: []
syntax:
content: public Person SelectedPerson { get; }
parameters: []
return:
type: TinyLife.Objects.Person
content.vb: Public Property SelectedPerson As Person
overload: TinyLife.Tools.PlayModeTool.SelectedPerson*
- uid: TinyLife.Tools.PlayModeTool.SelectedStat
commentId: P:TinyLife.Tools.PlayModeTool.SelectedStat
id: SelectedStat
parent: TinyLife.Tools.PlayModeTool
langs:
- csharp
- vb
name: SelectedStat
nameWithType: PlayModeTool.SelectedStat
fullName: TinyLife.Tools.PlayModeTool.SelectedStat
type: Property
source:
remote:
path: TinyLife/Tools/PlayModeTool.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: SelectedStat
path: ../TinyLife/Tools/PlayModeTool.cs
startLine: 52
assemblies:
- Tiny Life
namespace: TinyLife.Tools
summary: The <xref href="TinyLife.Tools.PlayModeTool.StatType" data-throw-if-not-resolved="false"></xref> that is currently se
example: []
syntax:
content: public PlayModeTool.StatType SelectedStat { get; }
parameters: []
return:
type: TinyLife.Tools.PlayModeTool.StatType
content.vb: Public Property SelectedStat As PlayModeTool.StatType
overload: TinyLife.Tools.PlayModeTool.SelectedStat*
- uid: TinyLife.Tools.PlayModeTool.#ctor
commentId: M:TinyLife.Tools.PlayModeTool.#ctor
id: '#ctor'
parent: TinyLife.Tools.PlayModeTool
langs:
- csharp
- vb
name: PlayModeTool()
nameWithType: PlayModeTool.PlayModeTool()
fullName: TinyLife.Tools.PlayModeTool.PlayModeTool()
type: Constructor
source:
remote:
path: TinyLife/Tools/PlayModeTool.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: .ctor
path: ../TinyLife/Tools/PlayModeTool.cs
startLine: 61
assemblies:
- Tiny Life
namespace: TinyLife.Tools
example: []
syntax:
content: public PlayModeTool()
content.vb: Public Sub New()
overload: TinyLife.Tools.PlayModeTool.#ctor*
nameWithType.vb: PlayModeTool.New()
fullName.vb: TinyLife.Tools.PlayModeTool.New()
name.vb: New()
- uid: TinyLife.Tools.PlayModeTool.Update(Microsoft.Xna.Framework.GameTime,System.Boolean)
commentId: M:TinyLife.Tools.PlayModeTool.Update(Microsoft.Xna.Framework.GameTime,System.Boolean)
id: Update(Microsoft.Xna.Framework.GameTime,System.Boolean)
parent: TinyLife.Tools.PlayModeTool
langs:
- csharp
- vb
name: Update(GameTime, bool)
nameWithType: PlayModeTool.Update(GameTime, bool)
fullName: TinyLife.Tools.PlayModeTool.Update(Microsoft.Xna.Framework.GameTime, bool)
type: Method
source:
remote:
path: TinyLife/Tools/PlayModeTool.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Update
path: ../TinyLife/Tools/PlayModeTool.cs
startLine: 64
assemblies:
- Tiny Life
namespace: TinyLife.Tools
summary: >-
This method is called every update frame for the <xref href="TinyLife.GameImpl.CurrentTool" data-throw-if-not-resolved="false"></xref>.
By default, this method updates the <xref href="TinyLife.Tools.Tool.MousePos" data-throw-if-not-resolved="false"></xref> and invokes <xref href="TinyLife.Tools.Tool.OnUpdate" data-throw-if-not-resolved="false"></xref>, and also manages the <xref href="TinyLife.Tools.UndoRedoStack" data-throw-if-not-resolved="false"></xref>.
example: []
syntax:
content: public override void Update(GameTime time, bool cursorOnUi)
parameters:
- id: time
type: Microsoft.Xna.Framework.GameTime
description: The game's time
- id: cursorOnUi
type: System.Boolean
description: Whether the cursor is currently covering the ui.
content.vb: Public Overrides Sub Update(time As GameTime, cursorOnUi As Boolean)
overridden: TinyLife.Tools.Tool.Update(Microsoft.Xna.Framework.GameTime,System.Boolean)
overload: TinyLife.Tools.PlayModeTool.Update*
nameWithType.vb: PlayModeTool.Update(GameTime, Boolean)
fullName.vb: TinyLife.Tools.PlayModeTool.Update(Microsoft.Xna.Framework.GameTime, Boolean)
name.vb: Update(GameTime, Boolean)
- uid: TinyLife.Tools.PlayModeTool.Opened
commentId: M:TinyLife.Tools.PlayModeTool.Opened
id: Opened
parent: TinyLife.Tools.PlayModeTool
langs:
- csharp
- vb
name: Opened()
nameWithType: PlayModeTool.Opened()
fullName: TinyLife.Tools.PlayModeTool.Opened()
type: Method
source:
remote:
path: TinyLife/Tools/PlayModeTool.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Opened
path: ../TinyLife/Tools/PlayModeTool.cs
startLine: 107
assemblies:
- Tiny Life
namespace: TinyLife.Tools
summary: >-
Called when this build tool is opened.
By default, this method initializes several settings and calls <xref href="TinyLife.Tools.Tool.InitBuildModeUi(MLEM.Ui.Elements.Panel%2cMLEM.Ui.Elements.Panel)" data-throw-if-not-resolved="false"></xref>.
example: []
syntax:
content: public override void Opened()
content.vb: Public Overrides Sub Opened()
overridden: TinyLife.Tools.Tool.Opened
overload: TinyLife.Tools.PlayModeTool.Opened*
- uid: TinyLife.Tools.PlayModeTool.Closed
commentId: M:TinyLife.Tools.PlayModeTool.Closed
id: Closed
parent: TinyLife.Tools.PlayModeTool
langs:
- csharp
- vb
name: Closed()
nameWithType: PlayModeTool.Closed()
fullName: TinyLife.Tools.PlayModeTool.Closed()
type: Method
source:
remote:
path: TinyLife/Tools/PlayModeTool.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Closed
path: ../TinyLife/Tools/PlayModeTool.cs
startLine: 313
assemblies:
- Tiny Life
namespace: TinyLife.Tools
summary: >-
Called when this build tool is closed.
By default, this method removes its elements from the ui.
example: []
syntax:
content: public override void Closed()
content.vb: Public Overrides Sub Closed()
overridden: TinyLife.Tools.Tool.Closed
overload: TinyLife.Tools.PlayModeTool.Closed*
- uid: TinyLife.Tools.PlayModeTool.CanUndoRedo
commentId: M:TinyLife.Tools.PlayModeTool.CanUndoRedo
id: CanUndoRedo
parent: TinyLife.Tools.PlayModeTool
langs:
- csharp
- vb
name: CanUndoRedo()
nameWithType: PlayModeTool.CanUndoRedo()
fullName: TinyLife.Tools.PlayModeTool.CanUndoRedo()
type: Method
source:
remote:
path: TinyLife/Tools/PlayModeTool.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CanUndoRedo
path: ../TinyLife/Tools/PlayModeTool.cs
startLine: 324
assemblies:
- Tiny Life
namespace: TinyLife.Tools
summary: Returns whether or not the <xref href="TinyLife.Tools.UndoRedoStack" data-throw-if-not-resolved="false"></xref> can currently operate and thus, whether the <xref href="TinyLife.Tools.UndoRedoStack.Undo" data-throw-if-not-resolved="false"></xref> or <xref href="TinyLife.Tools.UndoRedoStack.Redo" data-throw-if-not-resolved="false"></xref> actions can be called.
example: []
syntax:
content: public override bool CanUndoRedo()
return:
type: System.Boolean
description: Whether the undo or redo commands can be used right now.
content.vb: Public Overrides Function CanUndoRedo() As Boolean
overridden: TinyLife.Tools.Tool.CanUndoRedo
overload: TinyLife.Tools.PlayModeTool.CanUndoRedo*
- uid: TinyLife.Tools.PlayModeTool.SetSelectedPerson(TinyLife.Objects.Person)
commentId: M:TinyLife.Tools.PlayModeTool.SetSelectedPerson(TinyLife.Objects.Person)
id: SetSelectedPerson(TinyLife.Objects.Person)
parent: TinyLife.Tools.PlayModeTool
langs:
- csharp
- vb
name: SetSelectedPerson(Person)
nameWithType: PlayModeTool.SetSelectedPerson(Person)
fullName: TinyLife.Tools.PlayModeTool.SetSelectedPerson(TinyLife.Objects.Person)
type: Method
source:
remote:
path: TinyLife/Tools/PlayModeTool.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: SetSelectedPerson
path: ../TinyLife/Tools/PlayModeTool.cs
startLine: 333
assemblies:
- Tiny Life
namespace: TinyLife.Tools
summary: Sets the currently selected person to the given person and updates the UI accordingly.
example: []
syntax:
content: public bool SetSelectedPerson(Person person)
parameters:
- id: person
type: TinyLife.Objects.Person
description: The person.
return:
type: System.Boolean
description: Whether the person could be set. This is <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">false</a> if the selected person is already the given person.
content.vb: Public Function SetSelectedPerson(person As Person) As Boolean
overload: TinyLife.Tools.PlayModeTool.SetSelectedPerson*
- uid: TinyLife.Tools.PlayModeTool.Reload
commentId: M:TinyLife.Tools.PlayModeTool.Reload
id: Reload
parent: TinyLife.Tools.PlayModeTool
langs:
- csharp
- vb
name: Reload()
nameWithType: PlayModeTool.Reload()
fullName: TinyLife.Tools.PlayModeTool.Reload()
type: Method
source:
remote:
path: TinyLife/Tools/PlayModeTool.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Reload
path: ../TinyLife/Tools/PlayModeTool.cs
startLine: 1104
assemblies:
- Tiny Life
namespace: TinyLife.Tools
summary: Reloads the play mode tool's ui
example: []
syntax:
content: public static void Reload()
content.vb: Public Shared Sub Reload()
overload: TinyLife.Tools.PlayModeTool.Reload*
- uid: TinyLife.Tools.PlayModeTool.PlayEventSting(Microsoft.Xna.Framework.Audio.SoundEffect)
commentId: M:TinyLife.Tools.PlayModeTool.PlayEventSting(Microsoft.Xna.Framework.Audio.SoundEffect)
id: PlayEventSting(Microsoft.Xna.Framework.Audio.SoundEffect)
parent: TinyLife.Tools.PlayModeTool
langs:
- csharp
- vb
name: PlayEventSting(SoundEffect)
nameWithType: PlayModeTool.PlayEventSting(SoundEffect)
fullName: TinyLife.Tools.PlayModeTool.PlayEventSting(Microsoft.Xna.Framework.Audio.SoundEffect)
type: Method
source:
remote:
path: TinyLife/Tools/PlayModeTool.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: PlayEventSting
path: ../TinyLife/Tools/PlayModeTool.cs
startLine: 1119
assemblies:
- Tiny Life
namespace: TinyLife.Tools
summary: Plays an event sting sound effect with the <xref href="TinyLife.Options.EventStingVolume" data-throw-if-not-resolved="false"></xref>, additionally ducking the music for the duration of the sting.
example: []
syntax:
content: public static bool PlayEventSting(SoundEffect sting)
parameters:
- id: sting
type: Microsoft.Xna.Framework.Audio.SoundEffect
description: The sting to play.
return:
type: System.Boolean
description: Whether the sting was successfully played. If this is <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">false</a>, the <xref href="TinyLife.Options.EventStingVolume" data-throw-if-not-resolved="false"></xref> was not high enough to play a sting.
content.vb: Public Shared Function PlayEventSting(sting As SoundEffect) As Boolean
overload: TinyLife.Tools.PlayModeTool.PlayEventSting*
references:
- uid: TinyLife.Tools.Tool.PlayModeTool
commentId: F:TinyLife.Tools.Tool.PlayModeTool
parent: TinyLife.Tools.Tool
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_PlayModeTool
name: PlayModeTool
nameWithType: Tool.PlayModeTool
fullName: TinyLife.Tools.Tool.PlayModeTool
- uid: TinyLife.Tools.Tool.BuildTools
commentId: F:TinyLife.Tools.Tool.BuildTools
parent: TinyLife.Tools.Tool
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_BuildTools
name: BuildTools
nameWithType: Tool.BuildTools
fullName: TinyLife.Tools.Tool.BuildTools
- uid: TinyLife.Tools
commentId: N:TinyLife.Tools
href: TinyLife.html
name: TinyLife.Tools
nameWithType: TinyLife.Tools
fullName: TinyLife.Tools
spec.csharp:
- uid: TinyLife
name: TinyLife
href: TinyLife.html
- name: .
- uid: TinyLife.Tools
name: Tools
href: TinyLife.Tools.html
spec.vb:
- uid: TinyLife
name: TinyLife
href: TinyLife.html
- name: .
- uid: TinyLife.Tools
name: Tools
href: TinyLife.Tools.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: TinyLife.Tools.Tool
commentId: T:TinyLife.Tools.Tool
parent: TinyLife.Tools
href: TinyLife.Tools.Tool.html
name: Tool
nameWithType: Tool
fullName: TinyLife.Tools.Tool
- uid: TinyLife.Tools.Tool.RemoveTool
commentId: F:TinyLife.Tools.Tool.RemoveTool
parent: TinyLife.Tools.Tool
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_RemoveTool
name: RemoveTool
nameWithType: Tool.RemoveTool
fullName: TinyLife.Tools.Tool.RemoveTool
- uid: TinyLife.Tools.Tool.MoveTool
commentId: F:TinyLife.Tools.Tool.MoveTool
parent: TinyLife.Tools.Tool
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_MoveTool
name: MoveTool
nameWithType: Tool.MoveTool
fullName: TinyLife.Tools.Tool.MoveTool
- uid: TinyLife.Tools.Tool.SelectedObject
commentId: P:TinyLife.Tools.Tool.SelectedObject
parent: TinyLife.Tools.Tool
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_SelectedObject
name: SelectedObject
nameWithType: Tool.SelectedObject
fullName: TinyLife.Tools.Tool.SelectedObject
- uid: TinyLife.Tools.Tool.SelectedWall
commentId: P:TinyLife.Tools.Tool.SelectedWall
parent: TinyLife.Tools.Tool
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_SelectedWall
name: SelectedWall
nameWithType: Tool.SelectedWall
fullName: TinyLife.Tools.Tool.SelectedWall
- uid: TinyLife.Tools.Tool.SelectedRoof
commentId: P:TinyLife.Tools.Tool.SelectedRoof
parent: TinyLife.Tools.Tool
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_SelectedRoof
name: SelectedRoof
nameWithType: Tool.SelectedRoof
fullName: TinyLife.Tools.Tool.SelectedRoof
- uid: TinyLife.Tools.Tool.SelectedStairs
commentId: P:TinyLife.Tools.Tool.SelectedStairs
parent: TinyLife.Tools.Tool
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_SelectedStairs
name: SelectedStairs
nameWithType: Tool.SelectedStairs
fullName: TinyLife.Tools.Tool.SelectedStairs
- uid: TinyLife.Tools.Tool.IsRotateCwPressed
commentId: P:TinyLife.Tools.Tool.IsRotateCwPressed
parent: TinyLife.Tools.Tool
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_IsRotateCwPressed
name: IsRotateCwPressed
nameWithType: Tool.IsRotateCwPressed
fullName: TinyLife.Tools.Tool.IsRotateCwPressed
- uid: TinyLife.Tools.Tool.IsRotateCcwPressed
commentId: P:TinyLife.Tools.Tool.IsRotateCcwPressed
parent: TinyLife.Tools.Tool
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_IsRotateCcwPressed
name: IsRotateCcwPressed
nameWithType: Tool.IsRotateCcwPressed
fullName: TinyLife.Tools.Tool.IsRotateCcwPressed
- uid: TinyLife.Tools.Tool.IsCopyPressed
commentId: P:TinyLife.Tools.Tool.IsCopyPressed
parent: TinyLife.Tools.Tool
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_IsCopyPressed
name: IsCopyPressed
nameWithType: Tool.IsCopyPressed
fullName: TinyLife.Tools.Tool.IsCopyPressed
- uid: TinyLife.Tools.Tool.OnOpened
commentId: E:TinyLife.Tools.Tool.OnOpened
parent: TinyLife.Tools.Tool
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_OnOpened
name: OnOpened
nameWithType: Tool.OnOpened
fullName: TinyLife.Tools.Tool.OnOpened
- uid: TinyLife.Tools.Tool.OnClosed
commentId: E:TinyLife.Tools.Tool.OnClosed
parent: TinyLife.Tools.Tool
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_OnClosed
name: OnClosed
nameWithType: Tool.OnClosed
fullName: TinyLife.Tools.Tool.OnClosed
- uid: TinyLife.Tools.Tool.OnUpdate
commentId: E:TinyLife.Tools.Tool.OnUpdate
parent: TinyLife.Tools.Tool
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_OnUpdate
name: OnUpdate
nameWithType: Tool.OnUpdate
fullName: TinyLife.Tools.Tool.OnUpdate
- uid: TinyLife.Tools.Tool.OnDraw
commentId: E:TinyLife.Tools.Tool.OnDraw
parent: TinyLife.Tools.Tool
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_OnDraw
name: OnDraw
nameWithType: Tool.OnDraw
fullName: TinyLife.Tools.Tool.OnDraw
- uid: TinyLife.Tools.Tool.OnInitBuildModeUi
commentId: E:TinyLife.Tools.Tool.OnInitBuildModeUi
parent: TinyLife.Tools.Tool
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_OnInitBuildModeUi
name: OnInitBuildModeUi
nameWithType: Tool.OnInitBuildModeUi
fullName: TinyLife.Tools.Tool.OnInitBuildModeUi
- uid: TinyLife.Tools.Tool.Input
commentId: P:TinyLife.Tools.Tool.Input
parent: TinyLife.Tools.Tool
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_Input
name: Input
nameWithType: Tool.Input
fullName: TinyLife.Tools.Tool.Input
- uid: TinyLife.Tools.Tool.Map
commentId: P:TinyLife.Tools.Tool.Map
parent: TinyLife.Tools.Tool
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_Map
name: Map
nameWithType: Tool.Map
fullName: TinyLife.Tools.Tool.Map
- uid: TinyLife.Tools.Tool.Money
commentId: P:TinyLife.Tools.Tool.Money
parent: TinyLife.Tools.Tool
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_Money
name: Money
nameWithType: Tool.Money
fullName: TinyLife.Tools.Tool.Money
- uid: TinyLife.Tools.Tool.CurrentFloor
commentId: P:TinyLife.Tools.Tool.CurrentFloor
parent: TinyLife.Tools.Tool
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_CurrentFloor
name: CurrentFloor
nameWithType: Tool.CurrentFloor
fullName: TinyLife.Tools.Tool.CurrentFloor
- uid: TinyLife.Tools.Tool.Texture
commentId: F:TinyLife.Tools.Tool.Texture
parent: TinyLife.Tools.Tool
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_Texture
name: Texture
nameWithType: Tool.Texture
fullName: TinyLife.Tools.Tool.Texture
- uid: TinyLife.Tools.Tool.DisplayAsTab
commentId: F:TinyLife.Tools.Tool.DisplayAsTab
parent: TinyLife.Tools.Tool
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_DisplayAsTab
name: DisplayAsTab
nameWithType: Tool.DisplayAsTab
fullName: TinyLife.Tools.Tool.DisplayAsTab
- uid: TinyLife.Tools.Tool.MousePos
commentId: F:TinyLife.Tools.Tool.MousePos
parent: TinyLife.Tools.Tool
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_MousePos
name: MousePos
nameWithType: Tool.MousePos
fullName: TinyLife.Tools.Tool.MousePos
- uid: TinyLife.Tools.Tool.InitBuildModeUi(MLEM.Ui.Elements.Panel,MLEM.Ui.Elements.Panel)
commentId: M:TinyLife.Tools.Tool.InitBuildModeUi(MLEM.Ui.Elements.Panel,MLEM.Ui.Elements.Panel)
parent: TinyLife.Tools.Tool
isExternal: true
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_InitBuildModeUi_MLEM_Ui_Elements_Panel_MLEM_Ui_Elements_Panel_
name: InitBuildModeUi(Panel, Panel)
nameWithType: Tool.InitBuildModeUi(Panel, Panel)
fullName: TinyLife.Tools.Tool.InitBuildModeUi(MLEM.Ui.Elements.Panel, MLEM.Ui.Elements.Panel)
spec.csharp:
- uid: TinyLife.Tools.Tool.InitBuildModeUi(MLEM.Ui.Elements.Panel,MLEM.Ui.Elements.Panel)
name: InitBuildModeUi
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_InitBuildModeUi_MLEM_Ui_Elements_Panel_MLEM_Ui_Elements_Panel_
- name: (
- uid: MLEM.Ui.Elements.Panel
name: Panel
isExternal: true
- name: ','
- name: " "
- uid: MLEM.Ui.Elements.Panel
name: Panel
isExternal: true
- name: )
spec.vb:
- uid: TinyLife.Tools.Tool.InitBuildModeUi(MLEM.Ui.Elements.Panel,MLEM.Ui.Elements.Panel)
name: InitBuildModeUi
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_InitBuildModeUi_MLEM_Ui_Elements_Panel_MLEM_Ui_Elements_Panel_
- name: (
- uid: MLEM.Ui.Elements.Panel
name: Panel
isExternal: true
- name: ','
- name: " "
- uid: MLEM.Ui.Elements.Panel
name: Panel
isExternal: true
- name: )
- uid: TinyLife.Tools.Tool.Draw(Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch,System.Boolean)
commentId: M:TinyLife.Tools.Tool.Draw(Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch,System.Boolean)
parent: TinyLife.Tools.Tool
isExternal: true
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_Draw_Microsoft_Xna_Framework_GameTime_Microsoft_Xna_Framework_Graphics_SpriteBatch_System_Boolean_
name: Draw(GameTime, SpriteBatch, bool)
nameWithType: Tool.Draw(GameTime, SpriteBatch, bool)
fullName: TinyLife.Tools.Tool.Draw(Microsoft.Xna.Framework.GameTime, Microsoft.Xna.Framework.Graphics.SpriteBatch, bool)
nameWithType.vb: Tool.Draw(GameTime, SpriteBatch, Boolean)
fullName.vb: TinyLife.Tools.Tool.Draw(Microsoft.Xna.Framework.GameTime, Microsoft.Xna.Framework.Graphics.SpriteBatch, Boolean)
name.vb: Draw(GameTime, SpriteBatch, Boolean)
spec.csharp:
- uid: TinyLife.Tools.Tool.Draw(Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch,System.Boolean)
name: Draw
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_Draw_Microsoft_Xna_Framework_GameTime_Microsoft_Xna_Framework_Graphics_SpriteBatch_System_Boolean_
- name: (
- uid: Microsoft.Xna.Framework.GameTime
name: GameTime
isExternal: true
- name: ','
- name: " "
- uid: Microsoft.Xna.Framework.Graphics.SpriteBatch
name: SpriteBatch
isExternal: true
- name: ','
- name: " "
- uid: System.Boolean
name: bool
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: )
spec.vb:
- uid: TinyLife.Tools.Tool.Draw(Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch,System.Boolean)
name: Draw
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_Draw_Microsoft_Xna_Framework_GameTime_Microsoft_Xna_Framework_Graphics_SpriteBatch_System_Boolean_
- name: (
- uid: Microsoft.Xna.Framework.GameTime
name: GameTime
isExternal: true
- name: ','
- name: " "
- uid: Microsoft.Xna.Framework.Graphics.SpriteBatch
name: SpriteBatch
isExternal: true
- name: ','
- name: " "
- uid: System.Boolean
name: Boolean
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: )
- uid: TinyLife.Tools.Tool.GetMouseCursor
commentId: M:TinyLife.Tools.Tool.GetMouseCursor
parent: TinyLife.Tools.Tool
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_GetMouseCursor
name: GetMouseCursor()
nameWithType: Tool.GetMouseCursor()
fullName: TinyLife.Tools.Tool.GetMouseCursor()
spec.csharp:
- uid: TinyLife.Tools.Tool.GetMouseCursor
name: GetMouseCursor
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_GetMouseCursor
- name: (
- name: )
spec.vb:
- uid: TinyLife.Tools.Tool.GetMouseCursor
name: GetMouseCursor
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_GetMouseCursor
- name: (
- name: )
- uid: TinyLife.Tools.Tool.CanPlaceForTooltip
commentId: M:TinyLife.Tools.Tool.CanPlaceForTooltip
parent: TinyLife.Tools.Tool
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_CanPlaceForTooltip
name: CanPlaceForTooltip()
nameWithType: Tool.CanPlaceForTooltip()
fullName: TinyLife.Tools.Tool.CanPlaceForTooltip()
spec.csharp:
- uid: TinyLife.Tools.Tool.CanPlaceForTooltip
name: CanPlaceForTooltip
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_CanPlaceForTooltip
- name: (
- name: )
spec.vb:
- uid: TinyLife.Tools.Tool.CanPlaceForTooltip
name: CanPlaceForTooltip
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_CanPlaceForTooltip
- name: (
- name: )
- uid: TinyLife.Tools.Tool.CanSwitchGameModes
commentId: M:TinyLife.Tools.Tool.CanSwitchGameModes
parent: TinyLife.Tools.Tool
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_CanSwitchGameModes
name: CanSwitchGameModes()
nameWithType: Tool.CanSwitchGameModes()
fullName: TinyLife.Tools.Tool.CanSwitchGameModes()
spec.csharp:
- uid: TinyLife.Tools.Tool.CanSwitchGameModes
name: CanSwitchGameModes
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_CanSwitchGameModes
- name: (
- name: )
spec.vb:
- uid: TinyLife.Tools.Tool.CanSwitchGameModes
name: CanSwitchGameModes
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_CanSwitchGameModes
- name: (
- name: )
- uid: TinyLife.Tools.Tool.ShouldHighlightSelectedObject(System.Object)
commentId: M:TinyLife.Tools.Tool.ShouldHighlightSelectedObject(System.Object)
parent: TinyLife.Tools.Tool
isExternal: true
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_ShouldHighlightSelectedObject_System_Object_
name: ShouldHighlightSelectedObject(object)
nameWithType: Tool.ShouldHighlightSelectedObject(object)
fullName: TinyLife.Tools.Tool.ShouldHighlightSelectedObject(object)
nameWithType.vb: Tool.ShouldHighlightSelectedObject(Object)
fullName.vb: TinyLife.Tools.Tool.ShouldHighlightSelectedObject(Object)
name.vb: ShouldHighlightSelectedObject(Object)
spec.csharp:
- uid: TinyLife.Tools.Tool.ShouldHighlightSelectedObject(System.Object)
name: ShouldHighlightSelectedObject
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_ShouldHighlightSelectedObject_System_Object_
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: TinyLife.Tools.Tool.ShouldHighlightSelectedObject(System.Object)
name: ShouldHighlightSelectedObject
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_ShouldHighlightSelectedObject_System_Object_
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: TinyLife.Tools.Tool.OnButtonCreated(MLEM.Ui.Elements.Button)
commentId: M:TinyLife.Tools.Tool.OnButtonCreated(MLEM.Ui.Elements.Button)
parent: TinyLife.Tools.Tool
isExternal: true
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_OnButtonCreated_MLEM_Ui_Elements_Button_
name: OnButtonCreated(Button)
nameWithType: Tool.OnButtonCreated(Button)
fullName: TinyLife.Tools.Tool.OnButtonCreated(MLEM.Ui.Elements.Button)
spec.csharp:
- uid: TinyLife.Tools.Tool.OnButtonCreated(MLEM.Ui.Elements.Button)
name: OnButtonCreated
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_OnButtonCreated_MLEM_Ui_Elements_Button_
- name: (
- uid: MLEM.Ui.Elements.Button
name: Button
isExternal: true
- name: )
spec.vb:
- uid: TinyLife.Tools.Tool.OnButtonCreated(MLEM.Ui.Elements.Button)
name: OnButtonCreated
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_OnButtonCreated_MLEM_Ui_Elements_Button_
- name: (
- uid: MLEM.Ui.Elements.Button
name: Button
isExternal: true
- name: )
- uid: TinyLife.Tools.Tool.IsOnLot(Microsoft.Xna.Framework.Point)
commentId: M:TinyLife.Tools.Tool.IsOnLot(Microsoft.Xna.Framework.Point)
parent: TinyLife.Tools.Tool
isExternal: true
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_IsOnLot_Microsoft_Xna_Framework_Point_
name: IsOnLot(Point)
nameWithType: Tool.IsOnLot(Point)
fullName: TinyLife.Tools.Tool.IsOnLot(Microsoft.Xna.Framework.Point)
spec.csharp:
- uid: TinyLife.Tools.Tool.IsOnLot(Microsoft.Xna.Framework.Point)
name: IsOnLot
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_IsOnLot_Microsoft_Xna_Framework_Point_
- name: (
- uid: Microsoft.Xna.Framework.Point
name: Point
isExternal: true
- name: )
spec.vb:
- uid: TinyLife.Tools.Tool.IsOnLot(Microsoft.Xna.Framework.Point)
name: IsOnLot
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_IsOnLot_Microsoft_Xna_Framework_Point_
- name: (
- uid: Microsoft.Xna.Framework.Point
name: Point
isExternal: true
- name: )
- uid: TinyLife.Tools.Tool.ColorSelection(TinyLife.Utilities.ColorScheme[],System.Action{System.Int32,System.Int32},System.Func{System.Int32,System.Int32,System.Boolean})
commentId: M:TinyLife.Tools.Tool.ColorSelection(TinyLife.Utilities.ColorScheme[],System.Action{System.Int32,System.Int32},System.Func{System.Int32,System.Int32,System.Boolean})
parent: TinyLife.Tools.Tool
isExternal: true
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_ColorSelection_TinyLife_Utilities_ColorScheme___System_Action_System_Int32_System_Int32__System_Func_System_Int32_System_Int32_System_Boolean__
name: ColorSelection(ColorScheme[], Action<int, int>, Func<int, int, bool>)
nameWithType: Tool.ColorSelection(ColorScheme[], Action<int, int>, Func<int, int, bool>)
fullName: TinyLife.Tools.Tool.ColorSelection(TinyLife.Utilities.ColorScheme[], System.Action<int, int>, System.Func<int, int, bool>)
nameWithType.vb: Tool.ColorSelection(ColorScheme(), Action(Of Integer, Integer), Func(Of Integer, Integer, Boolean))
fullName.vb: TinyLife.Tools.Tool.ColorSelection(TinyLife.Utilities.ColorScheme(), System.Action(Of Integer, Integer), System.Func(Of Integer, Integer, Boolean))
name.vb: ColorSelection(ColorScheme(), Action(Of Integer, Integer), Func(Of Integer, Integer, Boolean))
spec.csharp:
- uid: TinyLife.Tools.Tool.ColorSelection(TinyLife.Utilities.ColorScheme[],System.Action{System.Int32,System.Int32},System.Func{System.Int32,System.Int32,System.Boolean})
name: ColorSelection
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_ColorSelection_TinyLife_Utilities_ColorScheme___System_Action_System_Int32_System_Int32__System_Func_System_Int32_System_Int32_System_Boolean__
- name: (
- uid: TinyLife.Utilities.ColorScheme
name: ColorScheme
href: TinyLife.Utilities.ColorScheme.html
- name: '['
- name: ']'
- name: ','
- name: " "
- uid: System.Action`2
name: Action
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.action-2
- name: <
- uid: System.Int32
name: int
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: ','
- name: " "
- uid: System.Int32
name: int
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: '>'
- name: ','
- name: " "
- uid: System.Func`3
name: Func
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.func-3
- name: <
- uid: System.Int32
name: int
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: ','
- name: " "
- uid: System.Int32
name: int
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: ','
- name: " "
- uid: System.Boolean
name: bool
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: '>'
- name: )
spec.vb:
- uid: TinyLife.Tools.Tool.ColorSelection(TinyLife.Utilities.ColorScheme[],System.Action{System.Int32,System.Int32},System.Func{System.Int32,System.Int32,System.Boolean})
name: ColorSelection
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_ColorSelection_TinyLife_Utilities_ColorScheme___System_Action_System_Int32_System_Int32__System_Func_System_Int32_System_Int32_System_Boolean__
- name: (
- uid: TinyLife.Utilities.ColorScheme
name: ColorScheme
href: TinyLife.Utilities.ColorScheme.html
- name: (
- name: )
- name: ','
- name: " "
- uid: System.Action`2
name: Action
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.action-2
- name: (
- name: Of
- name: " "
- uid: System.Int32
name: Integer
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: ','
- name: " "
- uid: System.Int32
name: Integer
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: )
- name: ','
- name: " "
- uid: System.Func`3
name: Func
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.func-3
- name: (
- name: Of
- name: " "
- uid: System.Int32
name: Integer
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: ','
- name: " "
- uid: System.Int32
name: Integer
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: ','
- name: " "
- uid: System.Boolean
name: Boolean
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: )
- name: )
- uid: TinyLife.Tools.Tool.ColorSelection(TinyLife.Utilities.ColorScheme,System.Action{System.Int32},System.Func{System.Int32,System.Boolean})
commentId: M:TinyLife.Tools.Tool.ColorSelection(TinyLife.Utilities.ColorScheme,System.Action{System.Int32},System.Func{System.Int32,System.Boolean})
parent: TinyLife.Tools.Tool
isExternal: true
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_ColorSelection_TinyLife_Utilities_ColorScheme_System_Action_System_Int32__System_Func_System_Int32_System_Boolean__
name: ColorSelection(ColorScheme, Action<int>, Func<int, bool>)
nameWithType: Tool.ColorSelection(ColorScheme, Action<int>, Func<int, bool>)
fullName: TinyLife.Tools.Tool.ColorSelection(TinyLife.Utilities.ColorScheme, System.Action<int>, System.Func<int, bool>)
nameWithType.vb: Tool.ColorSelection(ColorScheme, Action(Of Integer), Func(Of Integer, Boolean))
fullName.vb: TinyLife.Tools.Tool.ColorSelection(TinyLife.Utilities.ColorScheme, System.Action(Of Integer), System.Func(Of Integer, Boolean))
name.vb: ColorSelection(ColorScheme, Action(Of Integer), Func(Of Integer, Boolean))
spec.csharp:
- uid: TinyLife.Tools.Tool.ColorSelection(TinyLife.Utilities.ColorScheme,System.Action{System.Int32},System.Func{System.Int32,System.Boolean})
name: ColorSelection
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_ColorSelection_TinyLife_Utilities_ColorScheme_System_Action_System_Int32__System_Func_System_Int32_System_Boolean__
- name: (
- uid: TinyLife.Utilities.ColorScheme
name: ColorScheme
href: TinyLife.Utilities.ColorScheme.html
- name: ','
- name: " "
- uid: System.Action`1
name: Action
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.action-1
- name: <
- uid: System.Int32
name: int
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: '>'
- name: ','
- name: " "
- uid: System.Func`2
name: Func
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.func-2
- name: <
- uid: System.Int32
name: int
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: ','
- name: " "
- uid: System.Boolean
name: bool
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: '>'
- name: )
spec.vb:
- uid: TinyLife.Tools.Tool.ColorSelection(TinyLife.Utilities.ColorScheme,System.Action{System.Int32},System.Func{System.Int32,System.Boolean})
name: ColorSelection
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_ColorSelection_TinyLife_Utilities_ColorScheme_System_Action_System_Int32__System_Func_System_Int32_System_Boolean__
- name: (
- uid: TinyLife.Utilities.ColorScheme
name: ColorScheme
href: TinyLife.Utilities.ColorScheme.html
- name: ','
- name: " "
- uid: System.Action`1
name: Action
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.action-1
- name: (
- name: Of
- name: " "
- uid: System.Int32
name: Integer
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: )
- name: ','
- name: " "
- uid: System.Func`2
name: Func
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.func-2
- name: (
- name: Of
- name: " "
- uid: System.Int32
name: Integer
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: ','
- name: " "
- uid: System.Boolean
name: Boolean
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: )
- name: )
- uid: TinyLife.Tools.Tool.BuildModeButton(System.String,MLEM.Ui.Elements.Element.GenericCallback,MLEM.Ui.Elements.Element.DrawCallback,System.Single,MLEM.Textures.TextureRegion,System.Collections.Generic.IEnumerable{System.String},System.Nullable{System.Single})
commentId: M:TinyLife.Tools.Tool.BuildModeButton(System.String,MLEM.Ui.Elements.Element.GenericCallback,MLEM.Ui.Elements.Element.DrawCallback,System.Single,MLEM.Textures.TextureRegion,System.Collections.Generic.IEnumerable{System.String},System.Nullable{System.Single})
parent: TinyLife.Tools.Tool
isExternal: true
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_BuildModeButton_System_String_MLEM_Ui_Elements_Element_GenericCallback_MLEM_Ui_Elements_Element_DrawCallback_System_Single_MLEM_Textures_TextureRegion_System_Collections_Generic_IEnumerable_System_String__System_Nullable_System_Single__
name: BuildModeButton(string, GenericCallback, DrawCallback, float, TextureRegion, IEnumerable<string>, float?)
nameWithType: Tool.BuildModeButton(string, Element.GenericCallback, Element.DrawCallback, float, TextureRegion, IEnumerable<string>, float?)
fullName: TinyLife.Tools.Tool.BuildModeButton(string, MLEM.Ui.Elements.Element.GenericCallback, MLEM.Ui.Elements.Element.DrawCallback, float, MLEM.Textures.TextureRegion, System.Collections.Generic.IEnumerable<string>, float?)
nameWithType.vb: Tool.BuildModeButton(String, Element.GenericCallback, Element.DrawCallback, Single, TextureRegion, IEnumerable(Of String), Single?)
fullName.vb: TinyLife.Tools.Tool.BuildModeButton(String, MLEM.Ui.Elements.Element.GenericCallback, MLEM.Ui.Elements.Element.DrawCallback, Single, MLEM.Textures.TextureRegion, System.Collections.Generic.IEnumerable(Of String), Single?)
name.vb: BuildModeButton(String, GenericCallback, DrawCallback, Single, TextureRegion, IEnumerable(Of String), Single?)
spec.csharp:
- uid: TinyLife.Tools.Tool.BuildModeButton(System.String,MLEM.Ui.Elements.Element.GenericCallback,MLEM.Ui.Elements.Element.DrawCallback,System.Single,MLEM.Textures.TextureRegion,System.Collections.Generic.IEnumerable{System.String},System.Nullable{System.Single})
name: BuildModeButton
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_BuildModeButton_System_String_MLEM_Ui_Elements_Element_GenericCallback_MLEM_Ui_Elements_Element_DrawCallback_System_Single_MLEM_Textures_TextureRegion_System_Collections_Generic_IEnumerable_System_String__System_Nullable_System_Single__
- name: (
- uid: System.String
name: string
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ','
- name: " "
- uid: MLEM.Ui.Elements.Element.GenericCallback
name: GenericCallback
isExternal: true
- name: ','
- name: " "
- uid: MLEM.Ui.Elements.Element.DrawCallback
name: DrawCallback
isExternal: true
- name: ','
- name: " "
- uid: System.Single
name: float
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single
- name: ','
- name: " "
- uid: MLEM.Textures.TextureRegion
name: TextureRegion
isExternal: true
- name: ','
- name: " "
- uid: System.Collections.Generic.IEnumerable`1
name: IEnumerable
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
- name: <
- uid: System.String
name: string
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: '>'
- name: ','
- name: " "
- uid: System.Single
name: float
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single
- name: '?'
- name: )
spec.vb:
- uid: TinyLife.Tools.Tool.BuildModeButton(System.String,MLEM.Ui.Elements.Element.GenericCallback,MLEM.Ui.Elements.Element.DrawCallback,System.Single,MLEM.Textures.TextureRegion,System.Collections.Generic.IEnumerable{System.String},System.Nullable{System.Single})
name: BuildModeButton
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_BuildModeButton_System_String_MLEM_Ui_Elements_Element_GenericCallback_MLEM_Ui_Elements_Element_DrawCallback_System_Single_MLEM_Textures_TextureRegion_System_Collections_Generic_IEnumerable_System_String__System_Nullable_System_Single__
- name: (
- uid: System.String
name: String
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ','
- name: " "
- uid: MLEM.Ui.Elements.Element.GenericCallback
name: GenericCallback
isExternal: true
- name: ','
- name: " "
- uid: MLEM.Ui.Elements.Element.DrawCallback
name: DrawCallback
isExternal: true
- name: ','
- name: " "
- uid: System.Single
name: Single
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single
- name: ','
- name: " "
- uid: MLEM.Textures.TextureRegion
name: TextureRegion
isExternal: true
- name: ','
- name: " "
- uid: System.Collections.Generic.IEnumerable`1
name: IEnumerable
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
- name: (
- name: Of
- name: " "
- uid: System.String
name: String
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: )
- name: ','
- name: " "
- uid: System.Single
name: Single
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single
- name: '?'
- name: )
- uid: TinyLife.Tools.Tool.SelectFirstContentItem
commentId: M:TinyLife.Tools.Tool.SelectFirstContentItem
parent: TinyLife.Tools.Tool
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_SelectFirstContentItem
name: SelectFirstContentItem()
nameWithType: Tool.SelectFirstContentItem()
fullName: TinyLife.Tools.Tool.SelectFirstContentItem()
spec.csharp:
- uid: TinyLife.Tools.Tool.SelectFirstContentItem
name: SelectFirstContentItem
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_SelectFirstContentItem
- name: (
- name: )
spec.vb:
- uid: TinyLife.Tools.Tool.SelectFirstContentItem
name: SelectFirstContentItem
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_SelectFirstContentItem
- name: (
- name: )
- 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.Tools.PlayModeTool.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<PlayModeTool>(PlayModeTool)
nameWithType: Extensions.JsonCopy<PlayModeTool>(PlayModeTool)
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Tools.PlayModeTool>(TinyLife.Tools.PlayModeTool)
nameWithType.vb: Extensions.JsonCopy(Of PlayModeTool)(PlayModeTool)
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Tools.PlayModeTool)(TinyLife.Tools.PlayModeTool)
name.vb: JsonCopy(Of PlayModeTool)(PlayModeTool)
spec.csharp:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Tools.PlayModeTool)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- name: <
- uid: TinyLife.Tools.PlayModeTool
name: PlayModeTool
href: TinyLife.Tools.PlayModeTool.html
- name: '>'
- name: (
- uid: TinyLife.Tools.PlayModeTool
name: PlayModeTool
href: TinyLife.Tools.PlayModeTool.html
- name: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Tools.PlayModeTool)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- name: (
- name: Of
- name: " "
- uid: TinyLife.Tools.PlayModeTool
name: PlayModeTool
href: TinyLife.Tools.PlayModeTool.html
- name: )
- name: (
- uid: TinyLife.Tools.PlayModeTool
name: PlayModeTool
href: TinyLife.Tools.PlayModeTool.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: MLEM.Ui.Elements.Panel
commentId: T:MLEM.Ui.Elements.Panel
parent: MLEM.Ui.Elements
isExternal: true
name: Panel
nameWithType: Panel
fullName: MLEM.Ui.Elements.Panel
- uid: TinyLife.Tools.PlayModeTool.StatType
commentId: T:TinyLife.Tools.PlayModeTool.StatType
parent: TinyLife.Tools
href: TinyLife.Tools.PlayModeTool.html
name: PlayModeTool.StatType
nameWithType: PlayModeTool.StatType
fullName: TinyLife.Tools.PlayModeTool.StatType
spec.csharp:
- uid: TinyLife.Tools.PlayModeTool
name: PlayModeTool
href: TinyLife.Tools.PlayModeTool.html
- name: .
- uid: TinyLife.Tools.PlayModeTool.StatType
name: StatType
href: TinyLife.Tools.PlayModeTool.StatType.html
spec.vb:
- uid: TinyLife.Tools.PlayModeTool
name: PlayModeTool
href: TinyLife.Tools.PlayModeTool.html
- name: .
- uid: TinyLife.Tools.PlayModeTool.StatType
name: StatType
href: TinyLife.Tools.PlayModeTool.StatType.html
- uid: TinyLife.Mods.EventPhase.Pre
commentId: F:TinyLife.Mods.EventPhase.Pre
href: TinyLife.Mods.EventPhase.html#TinyLife_Mods_EventPhase_Pre
name: Pre
nameWithType: EventPhase.Pre
fullName: TinyLife.Mods.EventPhase.Pre
- uid: System.Action{System.ValueTuple{TinyLife.Objects.Person,TinyLife.Tools.PlayModeTool.StatType,MLEM.Ui.Elements.Panel,TinyLife.Mods.EventPhase}}
commentId: T:System.Action{System.ValueTuple{TinyLife.Objects.Person,TinyLife.Tools.PlayModeTool.StatType,MLEM.Ui.Elements.Panel,TinyLife.Mods.EventPhase}}
parent: System
definition: System.Action`1
href: https://learn.microsoft.com/dotnet/api/system.action-1
name: Action<(Person Person, PlayModeTool.StatType Stat, Panel Panel, EventPhase Phase)>
nameWithType: Action<(Person Person, PlayModeTool.StatType Stat, Panel Panel, EventPhase Phase)>
fullName: System.Action<(TinyLife.Objects.Person Person, TinyLife.Tools.PlayModeTool.StatType Stat, MLEM.Ui.Elements.Panel Panel, TinyLife.Mods.EventPhase Phase)>
nameWithType.vb: Action(Of (Person As Person, Stat As PlayModeTool.StatType, Panel As Panel, Phase As EventPhase))
fullName.vb: System.Action(Of (Person As TinyLife.Objects.Person, Stat As TinyLife.Tools.PlayModeTool.StatType, Panel As MLEM.Ui.Elements.Panel, Phase As TinyLife.Mods.EventPhase))
name.vb: Action(Of (Person As Person, Stat As PlayModeTool.StatType, Panel As Panel, Phase As EventPhase))
spec.csharp:
- uid: System.Action`1
name: Action
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.action-1
- name: <
- name: (
- uid: TinyLife.Objects.Person
name: Person
href: TinyLife.Objects.Person.html
- name: " "
- uid: System.ValueTuple{TinyLife.Objects.Person,TinyLife.Tools.PlayModeTool.StatType,MLEM.Ui.Elements.Panel,TinyLife.Mods.EventPhase}.Person
name: Person
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.objects.person,tinylife.tools.playmodetool.stattype,mlem.ui.elements.panel,tinylife.mods.eventphase-.person
- name: ','
- name: " "
- uid: TinyLife.Tools.PlayModeTool
name: PlayModeTool
href: TinyLife.Tools.PlayModeTool.html
- name: .
- uid: TinyLife.Tools.PlayModeTool.StatType
name: StatType
href: TinyLife.Tools.PlayModeTool.StatType.html
- name: " "
- uid: System.ValueTuple{TinyLife.Objects.Person,TinyLife.Tools.PlayModeTool.StatType,MLEM.Ui.Elements.Panel,TinyLife.Mods.EventPhase}.Stat
name: Stat
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.objects.person,tinylife.tools.playmodetool.stattype,mlem.ui.elements.panel,tinylife.mods.eventphase-.stat
- name: ','
- name: " "
- uid: MLEM.Ui.Elements.Panel
name: Panel
isExternal: true
- name: " "
- uid: System.ValueTuple{TinyLife.Objects.Person,TinyLife.Tools.PlayModeTool.StatType,MLEM.Ui.Elements.Panel,TinyLife.Mods.EventPhase}.Panel
name: Panel
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.objects.person,tinylife.tools.playmodetool.stattype,mlem.ui.elements.panel,tinylife.mods.eventphase-.panel
- name: ','
- name: " "
- uid: TinyLife.Mods.EventPhase
name: EventPhase
href: TinyLife.Mods.EventPhase.html
- name: " "
- uid: System.ValueTuple{TinyLife.Objects.Person,TinyLife.Tools.PlayModeTool.StatType,MLEM.Ui.Elements.Panel,TinyLife.Mods.EventPhase}.Phase
name: Phase
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.objects.person,tinylife.tools.playmodetool.stattype,mlem.ui.elements.panel,tinylife.mods.eventphase-.phase
- 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: " "
- name: (
- uid: System.ValueTuple{TinyLife.Objects.Person,TinyLife.Tools.PlayModeTool.StatType,MLEM.Ui.Elements.Panel,TinyLife.Mods.EventPhase}.Person
name: Person
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.objects.person,tinylife.tools.playmodetool.stattype,mlem.ui.elements.panel,tinylife.mods.eventphase-.person
- name: " "
- name: As
- name: " "
- uid: TinyLife.Objects.Person
name: Person
href: TinyLife.Objects.Person.html
- name: ','
- name: " "
- uid: System.ValueTuple{TinyLife.Objects.Person,TinyLife.Tools.PlayModeTool.StatType,MLEM.Ui.Elements.Panel,TinyLife.Mods.EventPhase}.Stat
name: Stat
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.objects.person,tinylife.tools.playmodetool.stattype,mlem.ui.elements.panel,tinylife.mods.eventphase-.stat
- name: " "
- name: As
- name: " "
- uid: TinyLife.Tools.PlayModeTool
name: PlayModeTool
href: TinyLife.Tools.PlayModeTool.html
- name: .
- uid: TinyLife.Tools.PlayModeTool.StatType
name: StatType
href: TinyLife.Tools.PlayModeTool.StatType.html
- name: ','
- name: " "
- uid: System.ValueTuple{TinyLife.Objects.Person,TinyLife.Tools.PlayModeTool.StatType,MLEM.Ui.Elements.Panel,TinyLife.Mods.EventPhase}.Panel
name: Panel
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.objects.person,tinylife.tools.playmodetool.stattype,mlem.ui.elements.panel,tinylife.mods.eventphase-.panel
- name: " "
- name: As
- name: " "
- uid: MLEM.Ui.Elements.Panel
name: Panel
isExternal: true
- name: ','
- name: " "
- uid: System.ValueTuple{TinyLife.Objects.Person,TinyLife.Tools.PlayModeTool.StatType,MLEM.Ui.Elements.Panel,TinyLife.Mods.EventPhase}.Phase
name: Phase
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.objects.person,tinylife.tools.playmodetool.stattype,mlem.ui.elements.panel,tinylife.mods.eventphase-.phase
- name: " "
- name: As
- name: " "
- uid: TinyLife.Mods.EventPhase
name: EventPhase
href: TinyLife.Mods.EventPhase.html
- name: )
- name: )
- uid: MLEM.Ui.Elements
commentId: N:MLEM.Ui.Elements
isExternal: true
name: MLEM.Ui.Elements
nameWithType: MLEM.Ui.Elements
fullName: MLEM.Ui.Elements
spec.csharp:
- uid: MLEM
name: MLEM
isExternal: true
- name: .
- uid: MLEM.Ui
name: Ui
isExternal: true
- name: .
- uid: MLEM.Ui.Elements
name: Elements
isExternal: true
spec.vb:
- uid: MLEM
name: MLEM
isExternal: true
- name: .
- uid: MLEM.Ui
name: Ui
isExternal: true
- name: .
- uid: MLEM.Ui.Elements
name: Elements
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: )
- uid: TinyLife.Objects.Person
commentId: T:TinyLife.Objects.Person
parent: TinyLife.Objects
href: TinyLife.Objects.Person.html
name: Person
nameWithType: Person
fullName: TinyLife.Objects.Person
- uid: TinyLife.Tools.PlayModeTool.SelectedPerson*
commentId: Overload:TinyLife.Tools.PlayModeTool.SelectedPerson
href: TinyLife.Tools.PlayModeTool.html#TinyLife_Tools_PlayModeTool_SelectedPerson
name: SelectedPerson
nameWithType: PlayModeTool.SelectedPerson
fullName: TinyLife.Tools.PlayModeTool.SelectedPerson
- uid: TinyLife.Objects
commentId: N:TinyLife.Objects
href: TinyLife.html
name: TinyLife.Objects
nameWithType: TinyLife.Objects
fullName: TinyLife.Objects
spec.csharp:
- uid: TinyLife
name: TinyLife
href: TinyLife.html
- name: .
- uid: TinyLife.Objects
name: Objects
href: TinyLife.Objects.html
spec.vb:
- uid: TinyLife
name: TinyLife
href: TinyLife.html
- name: .
- uid: TinyLife.Objects
name: Objects
href: TinyLife.Objects.html
- uid: TinyLife.Tools.PlayModeTool.SelectedStat*
commentId: Overload:TinyLife.Tools.PlayModeTool.SelectedStat
href: TinyLife.Tools.PlayModeTool.html#TinyLife_Tools_PlayModeTool_SelectedStat
name: SelectedStat
nameWithType: PlayModeTool.SelectedStat
fullName: TinyLife.Tools.PlayModeTool.SelectedStat
- uid: TinyLife.Tools.PlayModeTool.#ctor*
commentId: Overload:TinyLife.Tools.PlayModeTool.#ctor
href: TinyLife.Tools.PlayModeTool.html#TinyLife_Tools_PlayModeTool__ctor
name: PlayModeTool
nameWithType: PlayModeTool.PlayModeTool
fullName: TinyLife.Tools.PlayModeTool.PlayModeTool
nameWithType.vb: PlayModeTool.New
fullName.vb: TinyLife.Tools.PlayModeTool.New
name.vb: New
- uid: TinyLife.GameImpl.CurrentTool
commentId: P:TinyLife.GameImpl.CurrentTool
href: TinyLife.GameImpl.html#TinyLife_GameImpl_CurrentTool
name: CurrentTool
nameWithType: GameImpl.CurrentTool
fullName: TinyLife.GameImpl.CurrentTool
- uid: TinyLife.Tools.UndoRedoStack
commentId: T:TinyLife.Tools.UndoRedoStack
href: TinyLife.Tools.UndoRedoStack.html
name: UndoRedoStack
nameWithType: UndoRedoStack
fullName: TinyLife.Tools.UndoRedoStack
- uid: TinyLife.Tools.Tool.Update(Microsoft.Xna.Framework.GameTime,System.Boolean)
commentId: M:TinyLife.Tools.Tool.Update(Microsoft.Xna.Framework.GameTime,System.Boolean)
parent: TinyLife.Tools.Tool
isExternal: true
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_Update_Microsoft_Xna_Framework_GameTime_System_Boolean_
name: Update(GameTime, bool)
nameWithType: Tool.Update(GameTime, bool)
fullName: TinyLife.Tools.Tool.Update(Microsoft.Xna.Framework.GameTime, bool)
nameWithType.vb: Tool.Update(GameTime, Boolean)
fullName.vb: TinyLife.Tools.Tool.Update(Microsoft.Xna.Framework.GameTime, Boolean)
name.vb: Update(GameTime, Boolean)
spec.csharp:
- uid: TinyLife.Tools.Tool.Update(Microsoft.Xna.Framework.GameTime,System.Boolean)
name: Update
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_Update_Microsoft_Xna_Framework_GameTime_System_Boolean_
- name: (
- uid: Microsoft.Xna.Framework.GameTime
name: GameTime
isExternal: true
- name: ','
- name: " "
- uid: System.Boolean
name: bool
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: )
spec.vb:
- uid: TinyLife.Tools.Tool.Update(Microsoft.Xna.Framework.GameTime,System.Boolean)
name: Update
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_Update_Microsoft_Xna_Framework_GameTime_System_Boolean_
- name: (
- uid: Microsoft.Xna.Framework.GameTime
name: GameTime
isExternal: true
- name: ','
- name: " "
- uid: System.Boolean
name: Boolean
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: )
- uid: TinyLife.Tools.PlayModeTool.Update*
commentId: Overload:TinyLife.Tools.PlayModeTool.Update
href: TinyLife.Tools.PlayModeTool.html#TinyLife_Tools_PlayModeTool_Update_Microsoft_Xna_Framework_GameTime_System_Boolean_
name: Update
nameWithType: PlayModeTool.Update
fullName: TinyLife.Tools.PlayModeTool.Update
- uid: Microsoft.Xna.Framework.GameTime
commentId: T:Microsoft.Xna.Framework.GameTime
parent: Microsoft.Xna.Framework
isExternal: true
name: GameTime
nameWithType: GameTime
fullName: Microsoft.Xna.Framework.GameTime
- 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: 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.Tools.Tool.Opened
commentId: M:TinyLife.Tools.Tool.Opened
parent: TinyLife.Tools.Tool
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_Opened
name: Opened()
nameWithType: Tool.Opened()
fullName: TinyLife.Tools.Tool.Opened()
spec.csharp:
- uid: TinyLife.Tools.Tool.Opened
name: Opened
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_Opened
- name: (
- name: )
spec.vb:
- uid: TinyLife.Tools.Tool.Opened
name: Opened
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_Opened
- name: (
- name: )
- uid: TinyLife.Tools.PlayModeTool.Opened*
commentId: Overload:TinyLife.Tools.PlayModeTool.Opened
href: TinyLife.Tools.PlayModeTool.html#TinyLife_Tools_PlayModeTool_Opened
name: Opened
nameWithType: PlayModeTool.Opened
fullName: TinyLife.Tools.PlayModeTool.Opened
- uid: TinyLife.Tools.Tool.Closed
commentId: M:TinyLife.Tools.Tool.Closed
parent: TinyLife.Tools.Tool
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_Closed
name: Closed()
nameWithType: Tool.Closed()
fullName: TinyLife.Tools.Tool.Closed()
spec.csharp:
- uid: TinyLife.Tools.Tool.Closed
name: Closed
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_Closed
- name: (
- name: )
spec.vb:
- uid: TinyLife.Tools.Tool.Closed
name: Closed
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_Closed
- name: (
- name: )
- uid: TinyLife.Tools.PlayModeTool.Closed*
commentId: Overload:TinyLife.Tools.PlayModeTool.Closed
href: TinyLife.Tools.PlayModeTool.html#TinyLife_Tools_PlayModeTool_Closed
name: Closed
nameWithType: PlayModeTool.Closed
fullName: TinyLife.Tools.PlayModeTool.Closed
- uid: TinyLife.Tools.UndoRedoStack.Undo
commentId: M:TinyLife.Tools.UndoRedoStack.Undo
href: TinyLife.Tools.UndoRedoStack.html#TinyLife_Tools_UndoRedoStack_Undo
name: Undo()
nameWithType: UndoRedoStack.Undo()
fullName: TinyLife.Tools.UndoRedoStack.Undo()
spec.csharp:
- uid: TinyLife.Tools.UndoRedoStack.Undo
name: Undo
href: TinyLife.Tools.UndoRedoStack.html#TinyLife_Tools_UndoRedoStack_Undo
- name: (
- name: )
spec.vb:
- uid: TinyLife.Tools.UndoRedoStack.Undo
name: Undo
href: TinyLife.Tools.UndoRedoStack.html#TinyLife_Tools_UndoRedoStack_Undo
- name: (
- name: )
- uid: TinyLife.Tools.UndoRedoStack.Redo
commentId: M:TinyLife.Tools.UndoRedoStack.Redo
href: TinyLife.Tools.UndoRedoStack.html#TinyLife_Tools_UndoRedoStack_Redo
name: Redo()
nameWithType: UndoRedoStack.Redo()
fullName: TinyLife.Tools.UndoRedoStack.Redo()
spec.csharp:
- uid: TinyLife.Tools.UndoRedoStack.Redo
name: Redo
href: TinyLife.Tools.UndoRedoStack.html#TinyLife_Tools_UndoRedoStack_Redo
- name: (
- name: )
spec.vb:
- uid: TinyLife.Tools.UndoRedoStack.Redo
name: Redo
href: TinyLife.Tools.UndoRedoStack.html#TinyLife_Tools_UndoRedoStack_Redo
- name: (
- name: )
- uid: TinyLife.Tools.Tool.CanUndoRedo
commentId: M:TinyLife.Tools.Tool.CanUndoRedo
parent: TinyLife.Tools.Tool
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_CanUndoRedo
name: CanUndoRedo()
nameWithType: Tool.CanUndoRedo()
fullName: TinyLife.Tools.Tool.CanUndoRedo()
spec.csharp:
- uid: TinyLife.Tools.Tool.CanUndoRedo
name: CanUndoRedo
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_CanUndoRedo
- name: (
- name: )
spec.vb:
- uid: TinyLife.Tools.Tool.CanUndoRedo
name: CanUndoRedo
href: TinyLife.Tools.Tool.html#TinyLife_Tools_Tool_CanUndoRedo
- name: (
- name: )
- uid: TinyLife.Tools.PlayModeTool.CanUndoRedo*
commentId: Overload:TinyLife.Tools.PlayModeTool.CanUndoRedo
href: TinyLife.Tools.PlayModeTool.html#TinyLife_Tools_PlayModeTool_CanUndoRedo
name: CanUndoRedo
nameWithType: PlayModeTool.CanUndoRedo
fullName: TinyLife.Tools.PlayModeTool.CanUndoRedo
- uid: TinyLife.Tools.PlayModeTool.SetSelectedPerson*
commentId: Overload:TinyLife.Tools.PlayModeTool.SetSelectedPerson
href: TinyLife.Tools.PlayModeTool.html#TinyLife_Tools_PlayModeTool_SetSelectedPerson_TinyLife_Objects_Person_
name: SetSelectedPerson
nameWithType: PlayModeTool.SetSelectedPerson
fullName: TinyLife.Tools.PlayModeTool.SetSelectedPerson
- uid: TinyLife.Tools.PlayModeTool.Reload*
commentId: Overload:TinyLife.Tools.PlayModeTool.Reload
href: TinyLife.Tools.PlayModeTool.html#TinyLife_Tools_PlayModeTool_Reload
name: Reload
nameWithType: PlayModeTool.Reload
fullName: TinyLife.Tools.PlayModeTool.Reload
- uid: TinyLife.Options.EventStingVolume
commentId: F:TinyLife.Options.EventStingVolume
href: TinyLife.Options.html#TinyLife_Options_EventStingVolume
name: EventStingVolume
nameWithType: Options.EventStingVolume
fullName: TinyLife.Options.EventStingVolume
- uid: TinyLife.Tools.PlayModeTool.PlayEventSting*
commentId: Overload:TinyLife.Tools.PlayModeTool.PlayEventSting
href: TinyLife.Tools.PlayModeTool.html#TinyLife_Tools_PlayModeTool_PlayEventSting_Microsoft_Xna_Framework_Audio_SoundEffect_
name: PlayEventSting
nameWithType: PlayModeTool.PlayEventSting
fullName: TinyLife.Tools.PlayModeTool.PlayEventSting
- uid: Microsoft.Xna.Framework.Audio.SoundEffect
commentId: T:Microsoft.Xna.Framework.Audio.SoundEffect
parent: Microsoft.Xna.Framework.Audio
isExternal: true
name: SoundEffect
nameWithType: SoundEffect
fullName: Microsoft.Xna.Framework.Audio.SoundEffect
- uid: Microsoft.Xna.Framework.Audio
commentId: N:Microsoft.Xna.Framework.Audio
isExternal: true
name: Microsoft.Xna.Framework.Audio
nameWithType: Microsoft.Xna.Framework.Audio
fullName: Microsoft.Xna.Framework.Audio
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.Audio
name: Audio
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.Audio
name: Audio
isExternal: true